English 中文(简体)
如何从册子获得照片? 脸部
原标题:How can i get photos from albums? facebook c# sdk

我正在使用Facebook C# SDK,工作做得很好。 我想在我的网站上展示用户册和照片。 我使用的是图表。 我确实利用这一方法获得该册:

   fb.GetAsync("me/albums/photos", (val) =>
            {
                if (val.Error == null)
                {
                    IDictionary<string, object> dict = val.Result as IDictionary<string, object>;


                }
                else
                {
                    // TODO: Need to let the user know there was an error
                    //failedLogin();
                }
            });

我怎样拿到这些册子的照片?

最佳回答

a album

http://graph.facebook.com/{albumid}/photos?access_token={token}

您也可以使用SDK(如果你使用Net 4)的活力,从而消除了在电击中投到<条码>和>;IDictionary>的需要,并在通过图表标语时采用更清洁的代码。

问题回答

您为何有意使用FQL至查询:album





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签