I try social plugin "Recommendations Bar" and it works. It has a built-in fuction to activate and deactivate the social reading function. I want to enable this function in my simple app with "read" publish_actions. I dont want to use cookies or session var to do this, it's a wrong way. Users have to choose in which article on/off the social reading and change his preference on the fly.
User login with: scope="publish_actions, email"
I know: $facebook->api("/me/permissions"); $facebook->api("/me/news.reads?limit=10");
and I can post reads: FB.api('/me/news.reads', 'post', { 'article': 'xxxxxx', 'access_token': 'xxxxx' }, function(response)
and delete it: FB.api(id, 'delete', function(response)
Any idea for API call to enable/disable social reading function? How to set publish_actions permission value to 0/1 for the users having app installed?