关注these instructions后,很容易看到Magento在授予OAuth令牌后将其与用户ID相关联。在给定OAuth令牌的情况下,有没有办法以编程方式恢复用户ID?
答案 0 :(得分:-1)
如果有帮助,你可以这样做:
// Should be a collection of one element (or zero if nothing found)
$tokens = Mage::getModel('oauth/token')->getCollection()->addFilterById($tokenId);
foreach ($tokens as $token) {
echo $token->getCustomerId();
}