XenSocialize Pro [Paid] [Deleted]

umm... does this still happen when you disable Facebook?

I can confirm from my previous post asking about "timed out sessions"...
I can get postings submitted to FaceBook - but if I try the next day, I get denied due to Access Token...
If I reset the token, all is well - for a little while - then I get denied again.

Only with FaceBook...
 
The problem can also be because this add-on requires a permanent "Access Token" but Facebook has removed this :( Read this http://developers.facebook.com/docs/authentication/server-side/
I don't think that's what causing the problem...
I can confirm from my previous post asking about "timed out sessions"...
I can get postings submitted to FaceBook - but if I try the next day, I get denied due to Access Token...
If I reset the token, all is well - for a little while - then I get denied again.

Only with FaceBook...
I'll be posting an update in an hour or so...
 
Facebook Integration is working fine with me. I am not using other services and am using PHP 5.3 though (downgraded from 5.4 a few weeks ago).
 
Facebook Integration is working fine with me. I am not using other services and am using PHP 5.3 though (downgraded from 5.4 a few weeks ago).
It works fine for me as well - but come a day or two, it seems like the API token gets invalidated and you have to reset... Or that's what it looks like from here.
 
  • Like
Reactions: MrC
Okay, I've found a solution for the access token issue... but cant post an update within the next 2 hours because my mom is screaming my ears off... :P

I'll post an update as soon as I can.
 
Okay, I've found a solution for the access token issue... but cant post an update within the next 2 hours because my mom is screaming my ears off... :p

I'll post an update as soon as I can.

Great to hear that...i guess you have to retrieve the access token everytime you intend to post anything through this code:

https://www.facebook.com/dialog/oauth?
client_id=YOUR_APP_ID
&redirect_uri=YOUR_REDIRECT_URI
&scope=COMMA_SEPARATED_LIST_OF_PERMISSION_NAMES
&state=SOME_ARBITRARY_BUT_UNIQUE_STRING

Source: https://developers.facebook.com/docs/authentication/server-side/
 
Great to hear that...i guess you have to retrieve the access token everytime you intend to post anything through this code:

https://www.facebook.com/dialog/oauth?
client_id=YOUR_APP_ID
&redirect_uri=YOUR_REDIRECT_URI
&scope=COMMA_SEPARATED_LIST_OF_PERMISSION_NAMES
&state=SOME_ARBITRARY_BUT_UNIQUE_STRING

Source: https://developers.facebook.com/docs/authentication/server-side/
yes, something like that...
and no, the access token will be retrieved only once... but the expiry date of the token will be extended every 30 days... added a cron job entry for that ;)
 
I commented the entire protected function
Code:
protected function makeRequest($url, $params, $ch=null)
{
}
. There is no error now but the post that i make is neither posted on Twitter nor on Facebook...! You can check it for yourself on my site :(
 
Does this addon provide an option to delay the posting? I'm asking this because we often edit thread titles on our site and I would prefer to let my moderators a couple of hours before the topic goes off on Twitter.
 
Top Bottom