Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7641265
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T08:52:46+00:00 2026-05-31T08:52:46+00:00

I’m working on integrating Facebook support into a blogging engine. I registered an app

  • 0

I’m working on integrating Facebook support into a blogging engine. I registered an app on the Facebook developers page.
I’d like to implement four different kind of use cases:

  • Visitors on the site can log in with Facebook.
    I’m not interested in any of their private data, and I don’t want my site to access any of their stuff, so I don’t like to request any special permissions from them.
  • Owners of the site can display their Facebook status.
    I’d like the blogging engine to be able to retrieve the site owners’ latest status updates from Facebook and display the last few of them.
  • Posting a new status update when a new article is posted on the site.
    The site should be able to post a status update onto the owners’ Facebook account when s/he posts a new article onto the site.
  • Gallery
    The site’s gallery should be able to display pictures from the owners’ Facebook accounts.

For the first use case, I don’t require any permissions. For the others, some permissions are needed. How can I request different permissions for different users for my app?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T08:52:47+00:00Added an answer on May 31, 2026 at 8:52 am

    Facebook’s API allows the permissions of a user to progressively increase over time. In fact, that is Facebook guideline for getting permissions from user – get permissions as much as you want for current operation to be completed.

    You can log-in users into your system with default permissions level ” and then increase when needed. There is nothing in FB’s API which forces all users of your app to be at the same set of permissions.

    The code for this would look like:

    FB.login(function(response) {
       // handle the response
     });
    

    You can ask the API for the user’s current permissions by querying the “/me/permissions” API endpoint and passing the current access token granted to your app.

    On server side, call:

    https://graph.facebook.com/me/permissions?access_token=XXX
    
    // Sample JSON response:
    
    {
      "data": [
        {
          "installed": 1, 
          "status_update": 1, 
          "photo_upload": 1, 
          "video_upload": 1, 
          "offline_access": 1, 
          "email": 1, 
          "create_note": 1, 
          "share_item": 1, 
          "publish_stream": 1, 
          "user_location": 1, 
          "user_interests": 1, 
          "user_online_presence": 1, 
          "user_website": 1, 
          "user_photos": 1, 
          "user_videos": 1, 
          "user_photo_video_tags": 1, 
          "user_checkins": 1
        }
      ]
    }
    
    // or use the following JS snippet:
    FB.api('/me/permissions', function(response) {
        // handle the response
    });
    

    If you wish to get more permissions, just conduct a FB.login operation (if done through JS SDk) or the appropriate operation in your choice implementation method.

    The second FB.login would like the following:

    FB.login(function(response) {
       // handle the response
     }, {scope: 'email,user_likes'});
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I am writing an app with both english and french support. The app requests
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I would like to count the length of a string with PHP. The string
For some reason, after submitting a string like this Jack’s Spindle from a text
Basically, what I'm trying to create is a page of div tags, each has
this is what i have right now Drawing an RSS feed into the php,
I've got a string that has curly quotes in it. I'd like to replace
I have a French site that I want to parse, but am running into

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.