使用c#或vb.net如何获取相册ID列表?
我可以获取JSONObject
,但不知道如何提取ID。
据我所知 VB :
Dim fbApp = New FacebookClient(accessToken.Text)
Dim albums = DirectCast(fbApp.[Get]("me/albums"), IDictionary(Of String, Object))
如何才能将专辑ID转换为新阵列?
答案 0 :(得分:1)
我不是VB,所以你可以用c#做一些事情,你必须自己想通过VB。
这适用于c#
//Get the album data
dynamic albums = app.Get("me/albums");
foreach(dynamic albumInfo in albums.data)
{
//Get the Pictures inside the album this gives JASON objects list that has photo attributes
// described here http://developers.facebook.com/docs/reference/api/photo/
dynamic albumsPhotos = app.Get(albumInfo.id +"/photos");
}