Facebook OAuth “The domain of this URL isn’t included in the app’s domain”

Let me first start with saying I’ve searched for an answer to this question for quite some time… I’m trying to setup Facebook OAuth to work with my application that is being developed locally on my machine. Everything was working perfect with Facebook authorization UNTIL I moved from using localhost to another domain name (still … Read more

FB OpenGraph og:image not pulling images (possibly https?)

Facebook cannot grasp my og:image files and I have tried every usual solution. I’m beginning to think it might have something to do with https://… I have checked http://developers.facebook.com/tools/debug and have zero warnings or errors. It is finding the images we linked to in the “og:image“, but they’re showing up blank. When we click the … Read more

Facebook Graph API v2.0+ – /me/friends returns empty, or only friends who also use my application

I am trying to get my friend name and ids with Graph API v2.0, but data returns empty: { “data”: [ ] } When I was using v1.0, everything was OK with the following request: FBRequest* friendsRequest = [FBRequest requestForMyFriends]; [friendsRequest startWithCompletionHandler: ^(FBRequestConnection *connection, NSDictionary* result, NSError *error) { NSArray* friends = [result objectForKey:@”data”]; NSLog(@”Found: … Read more

Facebook Callback appends ‘#_=_’ to Return URL

Facebook callback has started appending #_=_ hash underscore to the Return URL Does anyone know why? What is the solution? 22 s 22 This was implemented by Facebook by design for security reasons. Here’s the explanation from Eric Osgood, a Facebook Team member: This has been marked as ‘by design’ because it prevents a potential … Read more

What’s the shebang/hashbang (#!) in Facebook and new Twitter URLs for?

I’ve just noticed that the long, convoluted Facebook URLs that we’re used to now look like this: http://www.facebook.com/example.profile#!/pages/Another-Page/123456789012345 As far as I can recall, earlier this year it was just a normal URL-fragment-like string (starting with #), without the exclamation mark. But now it’s a shebang or hashbang (#!), which I’ve previously only seen in … Read more