javascript - Can't get / delete / update Facebook posts -


i using fb's graph api.

i kept running useless error message hour, until tested giving myself permissions got work request.

{ error:    { message: 'unsupported request. please read graph api documentation @ https://developers.facebook.com/docs/graph-api',      type: 'graphmethodexception',      code: 100 } } 

now, @ least using graph explorer, can using post_id per documentation.

however, when post id, receive error

{   "error": {     "message": "(#100) invalid post id",      "type": "oauthexception",      "code": 100   } } 

and when run delete request id, receive:

{   "success": true } 

however, post never deleted.

i tried report bug facebook, bug reporting kept crashing , couldn't bug through.

i want create feature post bunch of different groups verify have permission, delete post after.

at pace, never in lifetime make happen. have insights why receiving litany of errors, , how delete these posts?

let alone fact discovering need permissions have go through app-vetting facebook, thinking throwing away plans feature best bet.


Comments

Popular posts from this blog

PHP DOM loadHTML() method unusual warning -

python - How to create jsonb index using GIN on SQLAlchemy? -

c# - TransactionScope not rolling back although no complete() is called -