如何获取 Facebook 好友的姓名?

发布于 2024-08-12 05:25:44 字数 340 浏览 4 评论 0原文

我只是在使用 C#(Windows 窗体应用程序)中的 Facebook API,并且正在努力弄清楚如何获取所选朋友的姓名。我已经使用以下代码获得了该朋友的 uid:

IList<long> myFreinds = fs.Friends.Get();
for (int i = 0; i < myFreinds.Count; i++)
{
   string friendName = ""; //this is where I want to get the name.
}

有人能给我指出正确的方向吗?我一直在网上查找并通过文档,但仍然无法做到这一点..

谢谢

I'm just playing around with the Facebook API in C# (Windows Form App), and I'm struggling to figure out how to get the name of a selected friend. I already have the uid for that friend using the following code:

IList<long> myFreinds = fs.Friends.Get();
for (int i = 0; i < myFreinds.Count; i++)
{
   string friendName = ""; //this is where I want to get the name.
}

Could someone point me in the right direction? I've been looking on the net and through the documentation and still can't do this..

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

Hello爱情风 2024-08-19 05:25:44

我认为这可能对您有帮助: http://wiki.developers.facebook.com /index.php/User:C_Sharp

并且根据您的示例,它应该是(我猜)这样的。

fs.Friends[i].Name

I think this might help you : http://wiki.developers.facebook.com/index.php/User:C_Sharp

and also by your example it should be (i'm guessing) smth like that.

fs.Friends[i].Name
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文