1
我正在嘗試獲取事件列表,特定用戶已註冊。注:我可以得到我的事件,但然後我需要登錄爲用戶:( Adobe Connect API用戶指南這樣說: Given a user’s login or principal-id, this action returns the list of events that the user attended 現在我可以得到活動列表用戶將參加 - 已註冊? ...如何從Adobe Connect API獲取用戶的事件列表?
我得到一個空的Json列表,當我用
private String getUsersAttendedEvents(string login, string accountId)
{
if (_bzsession == "")
Login();
string queryString = "login=" + login +
"&account-id=" + accountId;
var result = Request("events-attendance", queryString);
return JsonConvert.SerializeXmlNode(result, Newtonsoft.Json.Formatting.Indented);
}
響應結果是這樣的:
在此先感謝