We did an implementation of a read action. Here what is happening:
When we do the POST from our application, it worked well, no errors, and return the ID.
With this ID, I can see the json data about my read action on Graph Api Explore.
The article parameter, contains the url with OG meta tags to Article Object. If we get our url and use the Facebook Debug Tool (https://developers.facebook.com/tools/debug), we can see the correct meta tags, without errors.
Now, the problem: If I go to my activity log on Facebook account, I can´t see the read action. Is like it never was posted to Facebook.
What is weird, is we have other action to PUBLISH. It uses the same code to build the parameters and post to Facebook, and it works great.
The api url´s we are posting:
- Read: https://graph.facebook.com/me/news.reads
- Publish: https://graph.facebook.com/me/news.publishes
We are requesting "publish_actions" permission from users.
A sample of our OG meta tags on article parameter uri:
<meta property="fb:app_id" content="00000000">
<meta property="og:type" content="article">
<meta property="og:url" content="http://domain.cloudapp.net/article/article-title">
<meta property="og:site_name" content="Web Site Name">
<meta property="og:image" content="http://domain.blob.core.windows.net/public/cover/rld9a28ok8smi63d33q8s1iwhve8taf2.png">
<meta property="og:title" content="James Bond: 50 Years of Movies">
<meta property="og:description" content="James Bond: 50 Years of Movies infographic from hrblock.com is all about Bond, James Bond. See the top grossing films, iconic bond accessories and more.">
<meta property="article:published_time" content="2013-01-28">
A bit more of information:
- I´m in developers section of our Facebook application.
Any help will be appreciated. Thank you.