I have an open schedule problem. When I use facebook debug tools, I have this error message:
"error": { "message": "An unexpected error has occurred. Please retry your request later.", "type": "OAuthException", "code": 2 }
When I use the Graph API Explorer with a token generator:
POST type: https://graph.facebook.com/1145358260/univercial:read Add a new field: lesson http://www.filmslive.net/cours-6
This is normal!!!
This is my code:
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="fr-FR" xmlns:fb="https://www.facebook.com/2008/fbml"> <head prefix="og: http://ogp.me/ns# univercial: http://ogp.me/ns/apps/univercial#"> <title>Univercial | Read <?php echo $nom; ?>Lesson</title> <meta property="fb:app_id" content="429852050395283" /> <meta property="og:type" content="univercial:Lesson" /> <meta property="og:url" content="http://www.filmslive.net/cours-6"> <meta property="og:title" content="Read <?php echo $nom; ?> Lesson" /> <meta property="og:description" content="1รฉre Plateform d'interraction entre les jeunes รฉtudiants du Maroc" /> <meta property="og:image" content="http://www.filmslive.net/images/200_200.jpg" /> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <link href="css/style.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="fb-root"></div> <script> window.fbAsyncInit = function() { FB.init({ appId : '429852050395283', </script> <form> <input class="float_left bouton_vert" type="button" value="Read" onclick="postRead()" /> </form>
Result: alert ('erreur')
I can use the feed, but I can not use publish_actions.
source share