API返回400错误请求

API返回400错误请求

本文介绍了Facebook API返回400错误请求的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

System.Net.ServicePointManager.ServerCertificateValidationCallback = delegate { return true; };
// Get an access token in some manner.
// By default you can only get public info.
string token = null;

Facebook.FacebookAPI api = new Facebook.FacebookAPI(token);

JSONObject me = api.Get("/4");
Console.WriteLine(me.Dictionary["name"].String);




请帮我吗?




Please help me?

推荐答案


这篇关于Facebook API返回400错误请求的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-15 19:57