I'm trying to develop an app on windows phone 8.0, and I want to add a feature to send a friend request, having the id. I followed the URL Redirect instructions right here. https://developers.facebook.com/docs/reference/dialogs/friends/
I wrote this code:
private void Button_Click(object sender, RoutedEventArgs e)
{
string site = "https://www.facebook.com/dialog/friends/?id=bicicletas.ikatch&app_id=458358780877780&redirect_uri=https://mighty-lowlands-6381.herokuapp.com/";
Browserfb.Navigate(new Uri(site, UriKind.Absolute));
}
I changed the app id for my developer app id, and I really dont know where to url redirect, I just put www.facebook.com. So when i ran the app, the facebook UI appears, and I press the button to send the request, and it just gives me a http 500 internal server error. Anyone has a fix on this? Thank you