Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Found it!</p> <p><a href="http://developers.facebook.com/docs/reference/api/application/" rel="nofollow">http://developers.facebook.com/docs/reference/api/application/</a> http://developers.facebook.com/docs/howtos/login/login-as-page/</p> <p>"Application Page Access Tokens</p> <p>To perform the following operations as an Application Page, and not the current user, you must use the Application's Page access token, not the user access token commonly used for modifying Graph API objects nor the Application access token. This access token can be retrieved by issuing an HTTP GET to /USER_ID/accounts with the manage_pages permission. This will return a list of Pages (including Application profile pages) to which the user has administrative access, along with an access_token for each Page.</p> <p>Note: Applications that are configured as Native/Desktop apps will not be able to make API calls that require an application access_token."</p> <p>So: </p> <p>I went to <a href="http://developers.facebook.com/tools/explorer/" rel="nofollow">http://developers.facebook.com/tools/explorer/</a> and, as me, created an access token with "manage_pages" permission.</p> <p>I then went to <a href="https://graph.facebook.com/" rel="nofollow">https://graph.facebook.com/</a>$myname/accounts?access_token=$accesstoken</p> <p>and it gave me a list pages and apps that I had given permission to. I copied the access_token from the relevant page, and pasted that into my code, so that the server-side create event code always used that access token.</p> <p>And it worked!</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload