如何从Magento REST API令牌获取用户的ID?

时间:2013-09-04 15:34:59

标签: api magento rest oauth token

关注these instructions后,很容易看到Magento在授予OAuth令牌后将其与用户ID相关联。在给定OAuth令牌的情况下,有没有办法以编程方式恢复用户ID?

1 个答案:

答案 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();
}