social-feed
social-feed copied to clipboard
Twitter not working
There appears to be an issue with twitter, no tweets are being displayed for any twitter account
Yes I am having the same issue across all my sites using this. Looks like the social-feed demo is also doing the same... hoping that twitter hasn't been changing stuff again!
wasn't getting any console errors before but not suddenly I am getting thousands (literally) of console errors building up with the same errors:
XMLHttpRequest cannot load https://api.jublo.net/codebird/oauth2/token. Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://www.XXXX.co.uk' is therefore not allowed access. The response had HTTP status code 502.
i've see that too, maybe codebird have changed something about token/access/security in API we need to investigate
Hey, exactly the same for me ! I'm a beginer but i've seen that the tweeter api's link : http://api.tweecool.com/ doesn't exist ... it's in 1&1
Hey, same for me but im getting a console error POST https://api.jublo.net/codebird/oauth2/token 500 (Internal Server Error) codebird.js?ver=4.8:525
Same issue here... That might help or be related : https://github.com/jublonet/codebird-cors-proxy/issues/8
More likely this one https://github.com/jublonet/codebird-js/issues/135
I'm getting Twitter posts but takes some time, 1 minute or 2
Same here, impossible to load tweets, to prevent the plugin from requesting https://api.jublo.net/codebird/oauth2/token too much i've done this :
$.ajax({ url: 'https://api.jublo.net/codebird/oauth2/token', timeout: 1000, success: function () { $('.social-feed-container').socialfeed(options); }, error: function () { // Removing twitter config delete options.twitter; $('.social-feed-container').socialfeed(options); } });
Any news around the issue ?
@HartLarsson @pferder Same here, im getting tweets now but after 2 or 3 minutes.
@mutiullah7 Same here, I disabled the twitter function and everything else is working perfectly. Awaiting an update to fix the twitter issue.
Disabled, looking for an alternative - codebird have closed the issue seemingly without a resolution
i still following the thread here: https://github.com/jublonet/codebird-js/issues/137 seems is a platform codebird issue, i see that after a minute or so the stream comes from twitter without any error in console. Is like the jublonet server is overloaded and keep requests in queue
@HartLarsson any ideas when it will be fixed?
i've no idea because depends on an external library/service. If you read the codebird issue tracker there are many people with problems too.
follow: https://github.com/jublonet/codebird-js/issues/135
Hi guys,
We (Jublo - Codebird) have made (considerable) changes to our infrastructure to continue our service for you. Can you confirm if this has made the improvements required?
Thanks,
Josh
Everything is working fine again, thanks !
Hi @joshuaatkins all workings ok right now thank you for your prompt replay!
We are still experiencing issues. Do we have to update Codebird to fix the issue?
You have to update Codebird. We don't manage that server.
I downloaded the latest Codebird version from https://github.com/jublonet/codebird-js but it seems it was last updated a year ago.
It does not give a response from https://api.jublo.net/codebird/oauth2/token. I will post a comment to the Codebird issue.
is there any updates from codebird ...im also getting 502 error while accessing twitter
same here again "No 'Access-Control-Allow-Origin"
@all Hello there, the issues should be resolved now, can you test?
now we have the same problem again @jublo
Can you test again? We made more changes.
@jublo Twitter feed again stopped working
OPTIONS https://api.jublo.net/codebird/oauth2/token net::ERR_CONNECTION_TIMED_OUT
Same here!
codebird.js:525 OPTIONS https://api.jublo.net/codebird/oauth2/token net::ERR_CONNECTION_TIMED_OUT
It's a php bug on Jublo's proxy side. I solved it by installing https://github.com/jublonet/codebird-cors-proxy directly on my server. You have to set twitter's proxy option as follow :
twitter:{
proxy:"https://url/to/codebird-cors-proxy/",
accounts: //etc
}
@jean-emmanuel You meant code like this?
cb.setProxy("https://url/to/codebird-cors-proxy/");