0
votes
0answers
62 views

Facebook Permissions pop-up appears then disappears

Basically every time I try and get permissions from the user the little dialogue box appears and disappears almost instantly meaning I cant allow the extended permissions needed for my app. I'm not ...
-1
votes
1answer
25 views

Gettting the right access token

I'd like my application could read the posts from a group. To do it, I got the access token in the following url: ...
0
votes
1answer
40 views

Facebook API: Poll available permissions from Page Access Token

Given a Page Access Token, how do I poll Facebook's API to determine whether my app can still post on the Page's timeline? If I was working within the User's context, this would be easy. I would use ...
1
vote
0answers
16 views

Facebook scores cant be deleted due to removed permission?

again a little question considering facebook scores. As the app-admin I am able to set and delete scores for certain users with the app-accesstoken, lets say in case of cheating. I tried around a ...
0
votes
0answers
38 views

Facebook scores blocked by “only me” visibility

I have a game with highscores and I use the fb-score api to generate a friend leaderboard. One problem though ... to save a score for a fb-user, the app has to "post data for the user" ... in this ...
0
votes
1answer
101 views

Posting a Post through Facebook Graph Node JS

I'm currently looking to automate a few tasks by creating a custom application that allows me to easily post status updates on my Facebook page(not my personal timeline). My backend is running on ...
0
votes
0answers
58 views

Permission error when attempting to schedule a Facebook post to a user's feed via the Graph API

I'd like to find a way to allow users on my site to schedule Facebook posts on their personal feed ("/me/feed") via the Graph API. Whenever I attempt this, I receive the following error message: ...
0
votes
1answer
57 views

Set Read and Publish Permissions for same session

Hey I'm trying to use two different type of permissions. I know that I cant set the permission to the LoginButton authButton together like this: LoginButton authButton = (LoginButton) ...
0
votes
1answer
162 views

Facebook, setReadPermissions and setPublishPermissions

Hey I'm trying to use two different type of permissions. When I'm using only one, all works fine. But when I'm using both of them the app crashes: LoginButton authButton = (LoginButton) ...
0
votes
1answer
37 views

Allow the user to choose what permissions they give?

I am developing a Facebook app and I am asking the user for quite a lot of permissions when they login. I am referring to the user & friend permissions here. I would want to let the user choose ...
2
votes
1answer
2k views

An active access token must be used to query information about the current user | Access token seems to be valid

I have defined an access token and have the required permissions to 'like' a facebook page, but firebug keeps giving me the error in the title. Please don't mark this post as duplicate, because I've ...
0
votes
1answer
20 views

Post to a page non related to the app or user using J-SDK

I've created an Facebook web app that posts to the users wall successfully however I also want to post to a Facebook page at the same time. How do I link my App to this Facebook page so I can post to ...
1
vote
0answers
121 views

What is user/external_edge

What is user/external_edge? In my facebook app center.On Apps->My Ninja->Insights->Activity & Errors,I see my app request this much offen.and it is one hundred percent failure because ...
0
votes
0answers
142 views

Facebook. Post photo on user's wall and tag his friends on the photo

I want to make script to post photo on user's wall and tag multiple (50) his friends on the photo. I have code which works, but tag only 1 person. How to make, that tagged multiple? I think about ...
0
votes
0answers
69 views

Can't get user's birthday, already have permissions

My app has user_birthday and friends_birthday permissions, and when I use the Graph API Explorer to get the user properties, I only got user's public information. It's not a matter of time because I ...
0
votes
0answers
30 views

Empty group list returned

Has something changed in the Graph API regarding groups? I use a web application (PHP) that lists groups for the user. I use the following: HTTPS call to ...
0
votes
1answer
67 views

How can I access the public data on a user's profile page?

For argument's sake say we have a person who has made almost everything on their page public - workplace, hometown, location, birthday, email, phone number, posts etc. How can I access this ...
1
vote
1answer
89 views

Getting offline updates using access_token

I'm building application which will provide new filters for Facebook users. For these filters to work I need to fetch user posts (from his wall) so I managed to let them log in through their Facebook ...
0
votes
1answer
196 views

Facebook. After approve permission wrong redirect link

so I have a little problem, when first time user use my app It is redirected to: ...
0
votes
1answer
52 views

Getting permission to access users music favorites

We need to get the music favorites from users account through our App using PHP SDK, but calling $facebook->api('/' . $facebookUser['id'] . '/music', 'get') only retrieves the information if the ...
1
vote
1answer
206 views

Ask permission to read user's email Graph API in android

I want to ask permission to read users email id in Facebook using graph api. I tried this graph.facebook.com/me?fields=email I don't know how to ask permission via Graph API to read email. TIA ...
3
votes
1answer
114 views

Fatal error for permissions in facebook api

I got following error Fatal error: Uncaught OAuthException: An active access token must be used to query information about the current user. thrown in /home/.../third_party/base_facebook.php on line ...
0
votes
0answers
259 views

/page_id/permissions => OAuthException: (#3) App must be on whitelist

Until yesterday, we were checking permissions with /page_id/permissions. Today, it's not working, and giving us the error: OAuthException: (#3) App must be on whitelist. Now, it seems we can only ...
0
votes
0answers
190 views

Graph API Explorer returns different data

If I query following FQL statement: SELECT checkin_id, author_uid, page_id FROM checkin WHERE page_id ='PAGE_ID' the Graph API Explorer returns me the correct result, in my case 3 friends have ...
2
votes
1answer
47 views

What things to make sure before developing Facebook Apps? [closed]

I m developing the facebook app(game). Can any one tell me what thing to make sure before developing the facebook app. Like: Is we need to store access token for facebook app. How many permission we ...
0
votes
1answer
97 views

Redirection issue with latest version of php-sdk

We have used latest version of php-sdk 3 <?php try{ include_once "connect.php"; } catch(Exception $o){ echo '<pre>'; print_r($o); echo ...
0
votes
1answer
141 views

Facebook FQL-Query returns empty result

I'm trying to execute the following query on the FB-FQL: SELECT id, tagged_uids, type, coords FROM location_post WHERE distance(latitude, longitude, '37.785834', '-122.406417') < 1000 Apart from ...
0
votes
2answers
176 views

App permissions do not apply and the Auth Dialog does not reflect them

I have the following problem, thanks in advance for any help regarding this issue. I configured my application in Apps > [NAME-OF-THE-APP] > Permissions ...
1
vote
0answers
99 views

Get Friends' Open Graph Actions On Specific App

I'm trying to figure out how to see which friends of a user are also users of an Open Graph app, then display those friends' open graph actions on that specific app (i.e. news.reads). So essentially ...
0
votes
0answers
93 views

Does Score API require publish_actions or publish_stream?

Currently, I hae email and publish_actions under User & Friend Permissions, and publish_stream under Extended Permissions. Oddly enough, removing or adding publish_actions does not change the ...
2
votes
0answers
332 views

Face book Permissions error with code 200 while publishing comment to post made by users except me

I am getting Permissions error with code 200 from facebook while trying to publish a comment under post made by users other than me in the facebook fanpage whos admin is myself. I am using facebook ...
2
votes
1answer
101 views

Facebook: Is there a way of getting the current_location of users who are not my friends? Graph API or FQL

Let's imagine I have a user ID and username. I manually open her Facebook page (namely, http://www.facebook.com/username. And there it is! The "lives in" field appears saying she lives in wherever. ...
0
votes
2answers
576 views

Newly requested permissions in app settings are not reflected in the app itself

Recently i realized that i need more than basic information for my facebook application. I need the user's birthday as well. In my App permissions configuration i added "user_birthday" and by ...
13
votes
2answers
4k views

“The app must ask for a basic read permission at install time”

I am using the iOS Built in frameworks to connect. After asking for "publish_stream" permissions, FB returns an error: Error Domain=com.apple.accounts Code=7 "The Facebook server could not fulfill ...
0
votes
0answers
57 views

Why are Facebook Graph API permissions so weird?

I have created a Facebook page. On the page I have created some events and some notes. Everything as public as possible. Now I want to expose the data on my website using the Graph API. The general ...
2
votes
0answers
179 views

Retrieve Fb post comments using FBGraph

I am trying to retrieve Fb comments on a particular post. I tried to implement following method: FbGraphResponse *fb_graph_response = [fbGraph doGraphPost1:@"3788106577940/comments" ...
-1
votes
1answer
219 views

How to check for required permissions in a Facebook canvas app?

One of the basic things that a Facebook canvas app needs to do is check for permissions and require a user to authorize them to access a page. What's a good way to do this?
0
votes
1answer
111 views

Uploading photos to album, from command line

I have written an application that is able to write posts from the command line, to a particular users account. This, with the required permissions, is successfully posting messages with location and ...
1
vote
0answers
67 views

Is it possible to get pages from a list using Facebook Graph API?

I have a Facebook list that just contains a selection of pages that I have liked. I have permissions for 'user_likes' and 'read_friendlists', but it seems that only friends on a list are returned and ...
0
votes
0answers
50 views

Can't get photo data created by specified app

I'm trying to get all of my album data and photo data of them via graph api. I could get almost all album data and photo data correctly. But some photo data created by specified app(Food Spotting and ...
0
votes
0answers
110 views

Checking Friends Checkins on a Facebook Page (Permissions)

I'm trying to get checkins made by my friends on a facebook page. It works perfectly in the Graph Api Explorer. I'm using 'pageId'/checkins. But through my app I only get my checkins returned, not my ...
0
votes
1answer
95 views

Are we allowed to show a user's friend's profile photo in our mobile app to other users?

The user of our app would create a group using his friend list. His friends don't have to use the app. Is it ok to show the friend's profile photo within our app without their consent to other ...
0
votes
3answers
1k views

How to publish photos on behalf of the user with application access token ? (not with user access token)

I want my application to publish photos, user has already registered my app with publish_stream permission and is currently disconnected from facebook. Documentation ...
1
vote
2answers
81 views

Deprecation of offline_access - handling non-human access

I've been scouring the net for ages with this one, and I'm not sure if there is a solution at all, but thought I'd post and see if there's a response... thanks in advance! Several of our customers ...
1
vote
1answer
257 views

Graph API: Sharing a friend's post on my wall

Using the Graph API, how do I share a friend's post on my own wall ? I don't want to copy the original post's text and create a new post, becuase I need my friend to see that I shared his post. The ...
0
votes
0answers
77 views

Users can't login when asking for user_actions.music permission

We are developing an iOS app using the Facebook SDK and SSO. In the new version of our app, we started asking for the user_actions.music permission. At first everything worked great. I was able to ...
0
votes
0answers
40 views

Measure likes quantity from third-parties users

After searching this tool, I could not find an answer for my problem. So here it goes: Is it possible to get likes quantity from photos, from other users than the already authenticated user that is ...
1
vote
1answer
698 views

Facebook Graph API Video Upload Permissions

I'm working on an application that integrates w/ Facebook to publish videos that are then displayed on our app outside of FB. We have a Facebook page for the app, and uploading/posting via the FB ...
0
votes
0answers
40 views

Facebook Dialog method not posting to facebook

I am using the Facebook Graph API and am having trouble posting to the logged in user's news feed. I have the publish stream permission set, but that is all. Here is the picture of what shows up, ...
0
votes
0answers
341 views

App Permissions showing up in preview dialog, but not when app is accessed

I have an app which is requesting for publish actions. This permission shows up correctly in the preview dialog in the oath app setting screen. But when I am trying to access the app as a user the ...

1 2