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)