I am using the following code to send a get request to facebook graph api oauth server.

public string GetAccessToken(string code)
    {
        HttpWebRequest req = (HttpWebRequest) WebRequest.Create(@"https://graph.facebook.com/oauth/access_token?client_id=249725835046216&redirect_uri=http://localhost:2794/&client_secret=APP_SECRETa&code=" + code);
        HttpWebResponse res = (HttpWebResponse)req.GetResponse();
        string response=res.GetResponseStream().ToString();
        return response;
    }

The above code throws the following exception:

The remote server returned an error: (400) Bad Request.

Meanwhile if I type the same url in browser, it works. Please help, where am I wrong?

(P.S In the URL, I am surely replacing APP_SECRET with the secret key)

link|improve this question

54% accept rate
feedback

3 Answers

Your querystring parameters should be UrlEncoded:

HttpWebRequest req = (HttpWebRequest) WebRequest.Create(@"https://graph.facebook.com/oauth/access_token?client_id=249725835046216&redirect_uri=" + UrlEncode("http://localhost:2794/") + "&client_secret=" + UrlEncode(APP_SECRET) + "&code=" + UrlEncode(code));
link|improve this answer
feedback

You have to encode the parameters of your URL. You could use the HttpUtility class for encoding your parameters.

link|improve this answer
feedback

Most probably you need to specify user agent to satisfy some check logic of a server:

HttpWebRequest req = (HttpWebRequest) WebRequest.Create(@"https://...&code=" + code);
req.UserAgent = "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)";

try this and see if it helps.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.