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

Design for Facebook authentication in an iOS app that also accesses a secured web service

Goal: Allow a user to authentication with Facebook into an iOS application which requires access to a protected web service that I’m running. Assumptions: There is a native authentication (and registration) system in place for those users that opt not to use Facebook for sign in. Details: Assume we want to offer the option for … Read more

Automatically Facebook Debug Posts on Publish [closed]

Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for WordPress Development Stack Exchange. Closed 4 years ago. Improve this question I am looking to do something similar to this plugin which adds an “FB-Debugger” link on the admin of pages/posts: http://xlino.com/projects/facebook-debug-link-wordpress-plugin/ … Read more

Experiences with compiling WordPress using Hip Hop?

What are you experiences compiling WordPress using Hip Hop? ( https://github.com/facebook/hiphop-php/wiki/running-hiphop ) Specific: is this maintainable with upgrades? is the performance increase bigger than using alternatives? update: also interesting: http://www.phpclasses.org/blog/post/168-Can-NET-make-PHP-run-faster-than-the-official-PHP-implementation.html 2 s 2 Original approach of static compilation in HipHop PHP-to-C++ has been since replaced by HipHop VM just-in-time compilation. Facebook prominently featured WordPress as … Read more

A plugin where users can comment with Facebook or Twitter or OpenID [closed]

Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for WordPress Development Stack Exchange. Closed 7 years ago. Improve this question Is there any plugin where users can comment with Facebook or Twitter or OpenID… 2 s 2 I use disqus on … 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