Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter palladiangroup

    (@palladiangroup)

    Done. Thanks again!

    Thread Starter palladiangroup

    (@palladiangroup)

    Ok, we actually tried the update through the admin a second time, and the files are there this time. It’s possible the update just didn’t complete correctly the first time. It’s not broken anymore.

    Thanks anyway, especially for the quick response.

    Thread Starter palladiangroup

    (@palladiangroup)

    Ok, so I was able to get a page access token that I could use. It does seem though that I need to have a Facebook “app” and submit it for review, so this token will at least keep the feed active long enough for the review process.

    Some instructions that may be helpful:

    1. Create a Facebook “app”
    2. Become an admin of the page you want to pull media posts from
    3. Have ability to use cURL, probably via command line (more on that later)
    4. You need your Facebook app’s ID and secret
    5. You’ll need a Page Access Token: https://developers.facebook.com/tools/explorer
    • Set “Application” to the name of your FB app
    • Click “Get Token”, then select “Page Access Token” at the bottom
    • Select the page you want to get an access token for
    • Once the page is selected, grab the contents of the “Access Token” field
    • Use the following to get a longer-lived access token:<br>
      curl -i -X GET "https://graph.facebook.com/vX.X/oauth/access_token?grant_type=fb_exchange_token&client_id={app-id}&client_secret={app-secret}&fb_exchange_token={short-lived-token}
    • Note: “vX.X” refers to a version number, such as “v3.1”. Use whatever API version number your Facebook app uses.

    The access token you should have after following those steps should be good for a longer period of time (60 days). This should give you the time you need to record the screencast you need for submitting your Facebook app for review, and also give the Facebook team time to review without it breaking down.

Viewing 3 replies - 1 through 3 (of 3 total)