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

  • Home
  • SEARCH
  • 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 3930984
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T23:18:32+00:00 2026-05-19T23:18:32+00:00

I have a working Facebook app that most users will use just once. Leading

  • 0

I have a working Facebook app that most users will use just once. Leading into the Facebook workflow, users indicate if they want their wall to be written to or not. Based on that, I either ask for the publish_stream permission or not.

Later, a small percentage of users will come back and use the app again. Some of the people who previously did not want to write to the wall (and thusly I didn’t ask for publish_stream) now want to write to their wall.

How do I request an additional permission after the user has already authorized the app?

Similarly, how can I query a user to list which permissions they have already granted?

  • 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-19T23:18:33+00:00Added an answer on May 19, 2026 at 11:18 pm

    It’s as simple as adding the new permission to a new fb:login-button:

    <fb:login-button scope="publish_stream">
      Let me write on your wall!
    </fb:login-button>
    

    So for example you have the above hidden in a DIV and if the user tick a checkbox you show the DIV and prompt the new permission!

    A good live example of this is on the Facebook Test Console:

    1. Click login to “add” the application
    2. Then click on examples
    3. Under fb.api choose does-like

    Now you can see that even after being *connected to the application (test console app), you can actually have another login button to prompt the user!

    EDIT:
    To check if the user has granted your application a permission, just use this FQL:

    SELECT read_stream,offline_access FROM permissions WHERE uid=me()
    

    This would return something like:

    [
      {
        "read_stream": 1,
        "offline_access": 0
      }
    ]
    

    To test it, just use the test console posted early.

    EDIT 2:
    To construct the link yourself without XFBML or Javascript, you just need to add the scope parameter with the additional perms (reference):

    https://www.facebook.com/dialog/oauth?
         client_id=YOUR_APP_ID&redirect_uri=YOUR_URL&scope=publish_stream
    

    Or if your are using the PHP-SDK:

    $loginUrl = $facebook->getLoginUrl(array(
        "scope" => "publish_stream"
    ));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a facebook app page, and a separate facebook business profile page. The
I have recently starting porting a small app of mine to Facebook as a
I've got an iframe application that's working fine and rendering fbml in facebook. But
I have tried this page: http://developers.facebook.com/setup/ but it's not working. I think it's not
I have an existing site that is working well with Authlogic login. I'm trying
I am writing a facebook app for iphone, however when I send a request
I have this project i'm working on and id like to add a really
Until lately, my application was working great with Facebook connect. When you click on
I'm working on developing a native android application to retrieve data for a user
Hi i want to add to my app multi-friend-selector. I found a method in

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.