10

我正在玩 scribe 库(https://github.com/fernandezpablo85/scribe-java),试图访问 Magento 商店产品,但我遇到了一些问题(可能是 Magento 配置)。

我正在使用以下代码:

OAuthService service = new ServiceBuilder().provider(Magento17Api.class).apiKey(MAGENTO_API_KEY).apiSecret(MAGENTO_API_SECRET).build();
OAuthRequest request = new OAuthRequest(Verb.GET, MAGENTO_REST_API_URL
    + "/products");
service.signRequest(accessToken, request);
Response response = request.send();
System.out.println(response.getBody());

但我总是收到这样的回复:

{"messages":{"error":[{"code":0,"message":"Admin role not found"}]}}

我错过了什么?

4

1 回答 1

23

我找到了解决方案...

您应该转到 Magento 管理员 -> 系统 -> 权限 -> 用户 -> 编辑您的用户并在“休息角色”选项卡中为其授予“管理员”权限。

于 2013-02-02T16:27:10.507 回答