我想要使用oAuth
magento api獲得magento的分類列表。我想確保它不是針對特定產品,而是針對所有類別。使用oauth api獲取magento的分類列表
1
A
回答
0
0
我知道你與OAuth的工作,但我只是工作的東西,可能會幫助 - 這將讓你通過SOAP API的所有類別:
$client = new SoapClient('http://admin.aboyd.vp-dev.com/magento/api/soap?wsdl', array('trace' => 1, "connection_timeout" => 120));
// Can be added in Magento-Admin -> Web Services with role set to admin
// log in to API
try {
$sessionId = $client->login('username', 'api-password');
} catch (Exception $e) {
print_r($e);
die();
}
// get all categories
$allCats = $client->call($sessionId, 'catalog_category.tree');
的癥結是catalog_category.tree通話,請參閱http://www.magentocommerce.com/api/soap/catalog/catalogCategory/catalog_category.tree.html
相關問題
- 1. Nodejs Gmail OAuth API獲取Users.threads:列表
- 2. 如何使用Google的OAuth 2.0 Playground獲取文檔列表API?
- 3. 使用magento api獲取Order_Item_Id
- 4. 如何使用Google+ API獲取好友列表OAuth 2.0
- 5. Magento REST API OAuth
- 6. Magento獲取類別中的SKU列表
- 7. 在c#中使用ewp api獲取分發列表的列表
- 8. 無法使用Magento REST API使用OAuth
- 9. Foursquare的API獲取列表
- 10. 使用基於SOAP的API在Magento中獲取產品類別列表
- 11. 如何獲取magento中的分類列表?
- 12. Magento Rest-Api類別列表
- 13. 創建新的magento Rest api以獲取magento中的類別列表
- 14. 如何從Magento獲取類別列表?
- 15. NodeJS使用Oauth獲取API調用
- 16. 使用asp.net從Magento API v2獲取產品庫存列表
- 17. 使用oauth api獲取aol聯繫人
- 18. Google oauth使用js api獲取refresh_token
- 19. iOS SDK的Magento oauth api
- 20. Magento的REST API - OAuth錯誤
- 21. 獲取magento商店列表
- 22. Magento API:從類別獲取產品
- 23. 使用API獲取所有的wikipedia分類列表與每種語言?
- 24. Magento的REST API的OAuth移動應用
- 25. Quickbook PHP API - 獲取類別列表
- 26. 使用REST API獲取Sharepoint 2013列表
- 27. 使用YouTrack REST API獲取Sprint列表
- 28. 使用Docusign Rest API獲取Powerforms列表
- 29. 使用jQuery獲取類的列表
- 30. 獲取類別列表Wp API
第一步是Googling'magento api category list'。這是不是幫助?:http://www.magentocommerce.com/api/soap/catalog/catalogCategory/catalogCategory.html – 2013-02-22 12:10:23
我們想要使用magento rest api得到類別列表,但這是soap api。 – 2013-02-22 12:16:49
啊,我明白了。據http://www.magentocommerce.com/wiki/doc/webservices-api/introduction_to_rest_api#rest_resources這似乎不可能 – 2013-02-22 12:19:39