0
我想請求,利用C#XML RPC API從Magento的訂單列表。當我要求的訂單列表,我得到這個錯誤:Magentoc XML RCP - [2]拒絕訪問
服務器返回的錯誤異常:[2]拒絕訪問。
我已經完成以下步驟:
- 系統> Web服務> XML RPC用戶
- 創建了一個用戶,並將其分配給管理員角色
客戶端所使用的Magento 1.702。我可以通過API登錄很好,只是不能訪問的訂單。
// login (make sure you have user and role assigned in magento admin)
string sessionId = Connection.Login(apiUrl, apiUser, apiPass);
var soList = Order.List(apiUrl, sessionId, new object[] { });
Console.ReadLine();
在該站點中,我進入了系統> Web服務> XML RPC角色,然後單擊一個角色。我收到一個錯誤屏幕。我想知道這是否與它有關。
這裏是庫:
https://code.google.com/p/csharlibformagexmlrpcapi/downloads/list
Repots會有所幫助。有一個微軟「黑屏」沒有這樣的事。某處出錯了。 –
如何訪問錯誤日誌? –