Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Trigger.IO is a mobile development framework that enables cross-platform phone applications to be written in HTML5.

learn more… | top users | synonyms

0
votes
1answer
26 views

Does forge.facebook.authorize open native facebook app?

I've been looking at forge's new APIs (they look awesome)! For the forge-facebook-API, I was wondering: does it actually open the native facebook app on the phone to ask for permissions? I've done ...
0
votes
1answer
37 views

Trigger.io: Facebook API Login

The js sdk of Facebook has a fb.login function for which is used for login functionality. but I can't find anything that trigger.io has this functionality. I have managed to use ...
0
votes
1answer
34 views

forge.facebook.authorize([“create_event”] => FBSession: Publish or manage permissions are not permited

Only when asking for this specific permission: forge.facebook.authorize(["create_event"], function (auth) { }, function(error) { forge.logging.info(error); }); I get: [INFO] { message: ...
1
vote
2answers
57 views

Trigger.io Facebook “Login Failed, EXPECTED_FAILURE”

I am having many issues with connecting my Trigger.io app with Facebook using forge.facebook.authorize. Once I switched from a development to Ad Hoc distribution I am unable to login at all. I even ...
0
votes
0answers
73 views

Trigger.io Facebook authorize error callback not called when user presses 'back' on FB login (Android)

I'm using forge.facebook.authorize() to log in FB users in my Trigger.io Android app. When I call this the FB login modal dialogue is displayed. The user can cancel this modal either by: Tapping ...
1
vote
1answer
105 views

Trigger.io Android mobile app using outdated Facebook SDK? Warning to upgrade to 3.0.1 from Facebook

I've recently received an alert in developer.facebook.com for my Android app built using Trigger.io Forge: Please upgrade to the Facebook SDK 3.0.1 for Android attentionThursday This app uses ...
0
votes
1answer
50 views

forge.facebook.logout() not clearing token

Receiving "Error validating access token: Session does not match current stored session". I would like to clear any tokens and reauthorize/re-login but forge.facebook.logout() is not working. Any ...
0
votes
3answers
83 views

forge.facebook.authorize returning incorrect Facebook token expiry time

I've been using forge.facebook.authorize() successfully for several months in my app to get FB auth tokens. However since a certain point last week I've been unable to validate any of the tokens ...
1
vote
1answer
1k views

Trigger.io Facebook integration “unexpected read permissions” on some iOS devices

On an iOS 6 iPad the Facebook modal permissions dialog pops up, but when accepted it appears to do nothing. The following error appears in our logs: Jan 16 11:57:50 CloudPad Forge[21287] ...
1
vote
1answer
57 views

Trigger.io - FQL support?

So with Trigger.io's facebook.api function this works fine: forge.facebook.api('me', function (data) { console.log(data) }) Which is nearly identical to how you'd do it with FB.api. But this ...
1
vote
1answer
114 views

Unable to retrieve full facebook url used to open mobile application on FB viralities clicks

I'm currently trying to work with urlhandler setting, in order to know which original URL was used to open my app when coming from FB app. (see deep linking section in doc) I tried any url scheme (my ...
3
votes
1answer
114 views

trigger.io facebook authorize “unexpected failure” with iphone 5

I have an app which requires a Facebook login. The logic call uses forge.facebook.authorize( [''], function() { ... }, function(content) { alert(JSON.stringify(content)); } ); This ...
1
vote
1answer
92 views

Trigger.io forge.facebook.ui not returning data [duplicate]

Possible Duplicate: forge.facebook.ui callback never run I'm trying to use Trigger.io's facebook methods to display a friend selector. It displays properly but never returns any data. ...
1
vote
0answers
141 views

Trigger.io Android NullPointerException in logcat when starting app

Building an Android / html hybrid app with Trigger.IO Forge. Signed app with Android keystore, ran build, transferred to phone. Launched app successfully, it opened. Tried to login with Facebook ...
3
votes
2answers
157 views

Getting android key hash for trigger.io facebook module

In the trigger.io documentation for their Facebook module it has a "Tip" for getting your Android key hash to upload to Facebook: On Android a hash of the key used to sign your app is required by ...
0
votes
1answer
173 views

Trigger.IO - Cancelling Facebook UI dialogue fires success callback

I am using the forge facebook api to open a feed dialogue to post images to a users wall. If the user clicks 'Cancel' instead of 'Share', the success callback is still fired. If the user clicks the ...
3
votes
1answer
203 views

forge.facebook.ui callback invoked with null on iOS

I'm having trouble with Trigger.io Forge and getting a callback from a native FB friend selector UI. The problem is only showing on iOS, works fine on Android. Running this code in catalyst on either ...
2
votes
1answer
163 views

Trigger.io Facebook.Authorize

I'm attempting Facebook Single Sign On with Trigger.IO and when testing with the IOS simulator the following happens: Facebook Dialogue Opens User Logs In User Authorizes App User clicks Okay to ...
1
vote
1answer
165 views

Forge (Trigger.io) facebook module getLoginStatus

At Forge.Facebook module doc I can only see authorize, logout, api and ui function avaible from FB SDK. But it's et posible to get login status, like SDK's getLoginStatus, some how?
0
votes
1answer
200 views

forge.facebook.authorize not redirecting for website

I have a trigger.io app working fine using facebook authentication on Android and iPhone, however, when I publish it locally for web via Chrome clicking on the "Connect to facebook" button does not ...