-
AuthorPosts
-
Creaktor Branding Agency Friend
Creaktor Branding Agency
- Join date:
- May 2012
- Posts:
- 256
- Downloads:
- 56
- Uploads:
- 30
- Thanks:
- 31
- Thanked:
- 2 times in 2 posts
June 25, 2015 at 2:03 pm #207844We have a problem, since yesterday no Facebook items are being imported. I have updated the plugin from 1.1.9 to 1.2.3 but still no items are being imported. Before that everything seemed to work fine.
When we click on the verify links in the profiles, none of the feeds seem to work.
Is there again any change in the Facebook API?
The facebook items page is: http://www.pc55.nl/facebook
Some verify links that stopped working:
- https://www.facebook.com/feeds/page.php?id=212527938951986&format=rss20
- https://www.facebook.com/feeds/page.php?id=372592942787920&format=rss20
- https://www.facebook.com/feeds/page.php?id=190793447657633&format=rss20
- https://www.facebook.com/feeds/page.php?id=256081754425413&format=rss20
- https://www.facebook.com/feeds/page.php?id=181405121896370&format=rss20
Surprisingly one of the feed link (that gave trouble previously and generated an error message that was saved in a joomla article) has some output:
https://www.facebook.com/feeds/page.php?id=100005403183503&format=rss20Does anybody know what is going on?
Joomlart Team: for login details, please check my other post about Twitter being imported one day later.
UPDATE:
It looks like the function was already deprecated at Facebook (https://developers.facebook.com/docs/apps/changelog)Page RSS Feed endpoint – at https://www.facebook.com/feeds/page.php is now deprecated and will stop returning data from June 23, 2015. Developers should call the Graph API’s /v2.3/{page_id}/feed endpoint instead. This returns JSON rather than RSS/XML.
We though the changes that were made in version 1.1.9 of the Social feed plugin already implemented the new API but this doesn’t seem to be the case.
So Joomlart HELP! We need an need update to get things working again.
www.creaktor.com
Adam M ModeratorAdam M
- Join date:
- May 2014
- Posts:
- 5159
- Downloads:
- 33
- Uploads:
- 66
- Thanks:
- 95
- Thanked:
- 1271 times in 1235 posts
June 26, 2015 at 8:30 am #575605Hi @accessvirus,
Thanks for your report, I have just raised an issue so development team can have a look and fix it asap, please stay tuned.
June 28, 2015 at 2:49 pm #575717I cannot verify any Facebook Id so the JA Social Feed Plugin is not working for that particular API. Could anyone update us if it is going to be fixed?
June 28, 2015 at 2:49 pm #642046I cannot verify any Facebook Id so the JA Social Feed Plugin is not working for that particular API. Could anyone update us if it is going to be fixed?
June 28, 2015 at 2:49 pm #740706I cannot verify any Facebook Id so the JA Social Feed Plugin is not working for that particular API. Could anyone update us if it is going to be fixed?
jimcapraro Friendjimcapraro
- Join date:
- September 2008
- Posts:
- 109
- Downloads:
- 8
- Uploads:
- 2
- Thanks:
- 22
- Thanked:
- 4 times in 1 posts
June 29, 2015 at 4:59 pm #575825I am having the same problem – facebook ID’s that worked before have stopped working as of 6/24
Is there an estimated time when this problem will be fixed?
Adam M ModeratorAdam M
- Join date:
- May 2014
- Posts:
- 5159
- Downloads:
- 33
- Uploads:
- 66
- Thanks:
- 95
- Thanked:
- 1271 times in 1235 posts
June 29, 2015 at 6:05 pm #575832Hi @pavlouki, @jimcapraro,
Our development team is working on this matter and we will try to fix this problem asap, you can check the issue status in my previous reply.
1 user says Thank You to Adam M for this useful post
jimcapraro Friendjimcapraro
- Join date:
- September 2008
- Posts:
- 109
- Downloads:
- 8
- Uploads:
- 2
- Thanks:
- 22
- Thanked:
- 4 times in 1 posts
July 4, 2015 at 9:28 am #576345I just found the download for version 1.2.4 of this plugin – I’ve installed it – I’ve also created a facebook app and have an app id and a secret key. It seems to be working now.
I still have the problem of the publishing time for the post being back dated by 24 hours. This interferes with a cronjob I have running to auto post these facebook/joomla articles into a jomsocial activity stream. I was able to fix it with the following patch:
1. Editing /plugins/system/jasocial_feed/tables/joomla.php
2. Search for:
$item[‘publish_up’] = date(‘Y-m-d H:i:s’, time()-86400);3. and replace it with:
$j = new JDate();
$item[‘publish_up’] = $j->toSql();Jim Capraro
1 user says Thank You to jimcapraro for this useful post
jimcapraro Friendjimcapraro
- Join date:
- September 2008
- Posts:
- 109
- Downloads:
- 8
- Uploads:
- 2
- Thanks:
- 22
- Thanked:
- 4 times in 1 posts
July 4, 2015 at 9:28 am #642666I just found the download for version 1.2.4 of this plugin – I’ve installed it – I’ve also created a facebook app and have an app id and a secret key. It seems to be working now.
I still have the problem of the publishing time for the post being back dated by 24 hours. This interferes with a cronjob I have running to auto post these facebook/joomla articles into a jomsocial activity stream. I was able to fix it with the following patch:
1. Editing /plugins/system/jasocial_feed/tables/joomla.php
2. Search for:
$item[‘publish_up’] = date(‘Y-m-d H:i:s’, time()-86400);3. and replace it with:
$j = new JDate();
$item[‘publish_up’] = $j->toSql();Jim Capraro
1 user says Thank You to jimcapraro for this useful post
jimcapraro Friendjimcapraro
- Join date:
- September 2008
- Posts:
- 109
- Downloads:
- 8
- Uploads:
- 2
- Thanks:
- 22
- Thanked:
- 4 times in 1 posts
July 4, 2015 at 9:28 am #741323I just found the download for version 1.2.4 of this plugin – I’ve installed it – I’ve also created a facebook app and have an app id and a secret key. It seems to be working now.
I still have the problem of the publishing time for the post being back dated by 24 hours. This interferes with a cronjob I have running to auto post these facebook/joomla articles into a jomsocial activity stream. I was able to fix it with the following patch:
1. Editing /plugins/system/jasocial_feed/tables/joomla.php
2. Search for:
$item[‘publish_up’] = date(‘Y-m-d H:i:s’, time()-86400);3. and replace it with:
$j = new JDate();
$item[‘publish_up’] = $j->toSql();Jim Capraro
1 user says Thank You to jimcapraro for this useful post
Adam M ModeratorAdam M
- Join date:
- May 2014
- Posts:
- 5159
- Downloads:
- 33
- Uploads:
- 66
- Thanks:
- 95
- Thanked:
- 1271 times in 1235 posts
July 6, 2015 at 4:49 am #576432Hi @jimcapraro,
Many thanks for taking your time to suggest us a fix. I updated the issue status and notify development team about this so they can have a look.
If you still have any question or need further assistance, please feel free to let us know.
Luna Garden ModeratorLuna Garden
- Join date:
- July 2011
- Posts:
- 2617
- Downloads:
- 80
- Uploads:
- 96
- Thanks:
- 78
- Thanked:
- 453 times in 425 posts
July 13, 2015 at 8:35 am #577156Hello Jim Capraro,
Making publish date later 24 hours than actual time is our purpose, to avoid other bugs arising.
You can read more about this thread for more information: http://www.joomlart.com/forums/topic/article-publishing-dates-are-off-by-24-hours/#post-573258
Luna Garden ModeratorLuna Garden
- Join date:
- July 2011
- Posts:
- 2617
- Downloads:
- 80
- Uploads:
- 96
- Thanks:
- 78
- Thanked:
- 453 times in 425 posts
July 13, 2015 at 8:35 am #643463Hello Jim Capraro,
Making publish date later 24 hours than actual time is our purpose, to avoid other bugs arising.
You can read more about this thread for more information: http://www.joomlart.com/forums/topic/article-publishing-dates-are-off-by-24-hours/#post-573258
Luna Garden ModeratorLuna Garden
- Join date:
- July 2011
- Posts:
- 2617
- Downloads:
- 80
- Uploads:
- 96
- Thanks:
- 78
- Thanked:
- 453 times in 425 posts
July 13, 2015 at 8:35 am #742114Hello Jim Capraro,
Making publish date later 24 hours than actual time is our purpose, to avoid other bugs arising.
You can read more about this thread for more information: http://id.joomlart.com/forums/topic/article-publishing-dates-are-off-by-24-hours/#post-573258
dieudonne Frienddieudonne
- Join date:
- January 2011
- Posts:
- 947
- Downloads:
- 61
- Uploads:
- 266
- Thanks:
- 452
- Thanked:
- 107 times in 3 posts
July 17, 2015 at 2:42 pm #577836<em>@Adam M 480570 wrote:</em><blockquote>Hi @pavlouki, @jimcapraro,
Our development team is working on this matter and we will try to fix this problem asap, you can check the issue status in my previous reply.</blockquote>
Oh oh yes but not too fast…
-
AuthorPosts
This topic contains 21 replies, has 7 voices, and was last updated by masama1 9 years, 3 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum