0
我有以下方法從我的配置文件中檢索提要。主要的問題是,我不知道如何從我得到的變量中提取飼料。如何使用c#SDK從Facebook獲取新聞源
private void RetrieveMyFeedsFromFacebook()
{
var fb = new FacebookClient(_accessToken);
string details = "";
try
{
fb.GetCompleted +=
(o, e) =>
{
if (e.Error == null)
{
var result = (IDictionary<string, object>)e.GetResultData();
//Dispatcher.BeginInvoke(() => lbFeeds.ItemsSource = details);
}
else
{
Dispatcher.BeginInvoke(() => MessageBox.Show(e.Error.Message));
}
};
fb.GetAsync("/me/feed");
}
catch (FacebookApiException ex)
{
MessageBox.Show(ex.Message);
}
}
將您的代碼放在代碼塊中 - 現在無法讀取。除此之外,你總是可以看看facebooks api文檔... – ub1k
好了,做完了......找出如何做到這一點。我一直在谷歌很長的..幾乎php..fbml..fql ..現在不需要。 –