Questions tagged [facebook-app-requests]

205 questions
2
votes
3 answers

How to send Facebook apprequests/notifications with custom message parameter?

I'm currently developing a Facebook canvas app in which I let the users invite others to use the app, pretty standard stuff. For this I'm using the FB.ui method of the JavaScript SDK. FB.ui({ method: 'apprequests', title: "Title", …
2
votes
1 answer

FaceBook app request is shown on website only, but not on FB app

I'm sending an app request from my iphone app, using this code: NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys: @"Join my app", @"message", [NSString stringWithFormat:@"%@",…
Amit Hagin
  • 3,136
  • 6
  • 26
  • 36
2
votes
2 answers

Facebook Using code from different domains

I am creating a widget in js that will be implemented across many websites, Facebook requires me to give them "my domain" so they will know that I am verified. The problem is that the widget will be used from many websites, and I am not going to…
funerr
  • 7,212
  • 14
  • 81
  • 129
2
votes
0 answers

invited friends do not receive invitations from my facebook app

I'm trying to let the users of my app (which is still under development, i.e. Site URL still http://localhost:portnumbber, but sandbox mode is Disabled) to send invitations for the app using the URL like the…
Samer Samer
  • 93
  • 1
  • 6
1
vote
2 answers

How to get the current appID from url?

I have an app in facebook, and I want to use this very same system on a different app as well. I have all data stored in a database (appid, appsecret, pageid etc), but if I load the app in facebook, I can't figure out what appid the current app…
user936965
1
vote
0 answers

Facebook Developer App Review - Your submission must include pages_read_engagement to use instagram_basic

Hello Facebook Developers Community, I am trying to go through the 'Request for App Review' process for which I have completed all the steps besides one which is very confusing and literally has no useful guidance anywhere. The dashboard shows…
ShereKhan
  • 11
  • 1
1
vote
0 answers

Facebook Android SDK, graph api >3.2 and 4.0 sending app request issue

I am trying to send app request to my facebook friend after authentication by using the following code snippet. public void sendApplicationRequest(final List userIdList, final String message, final String title, final int requestCode) { …
1
vote
0 answers

Facebook App Tester - do they have to be a developer?

I just added a couple of friends as "testers" for my app. I can assign administrators, developers, testers and analyticers and according to https://developers.facebook.com/docs/apps/security only admins and developers must have a developer account…
Chris
  • 413
  • 1
  • 4
  • 12
1
vote
1 answer

Requires extended permission: publish_actions for users even after approved publish_actions

Hi I have a 'publish_actions' approved Facebook live App. It perfectly works for developer accounts and can upload image. But when any normal user accessing this app, it shows a: fatal (#200) Requires extended permission: publish_actions Can any…
1
vote
0 answers

FB.Apprequest popup not showing in unity5

I am using facebook sdk package 7.5 for unity 5. Whenever I am sending app invite request without selecting friends it is working fine and popup is shown but whenever I am selecting friends and then trying to send request using FB.Apprequest popup…
1
vote
4 answers

Can't Get Response.email from facebook API v2.5 even email is green in App Reviews

Can't Get Response.email from facebook API v2.5 even email is green in App Reviews. I used this basic FB.api(), even with SCOPE it doesn't return EMAIL FB.api('/me', function(response) { console.log(response); });
1
vote
1 answer

Facebook Unity SDK AppRequest not showing notification [Android]

I am making game with Unity v5.2.1 + Facebook Unity SDK v7.2.0 for android. My game have feature to invite friends. This feature implemented by calling FB.AppRequest() function. It works quite well, but the problem is my friend not receiving an…
1
vote
1 answer

Send an App Request to a specific user using the Facebook SDK

I'm working on a game that has a "play with your Facebook friends" feature (it does not use Facebook Canvas). The setup is pretty standard. I want to display a list of all of the user's Facebook friends and if they are also users of my app, a "Play"…
Henrique
  • 4,921
  • 6
  • 36
  • 61
1
vote
0 answers

Facebook Unity SDK - Handling Apprequests by code

I've been looking around the Unity SDK apprequest tutorial and I've been wondering whether it is possible to accept app requests by code. Say for example that i wanted to accept apprequests by code in the application itself, so people won't have to…
1
vote
4 answers

Unity Facebook SDK: AppRequest Error 400 Bad Request

i've been building a social manager class for use with the facebook unity sdk, not the prime[31] version, just the one you can get from facebook: https://developers.facebook.com/docs/unity/downloads I'm building this for use with both Android and…