For help with installation, bugs reports or feature requests, please head over to our new forums.
Genuitec Community on GitHub
- This topic has 10 replies, 4 voices, and was last updated 12 years, 2 months ago by
support-michael.
-
AuthorPosts
-
virtualmasterMemberI am trying to put facebook feed from https://www.facebook.com/feeds/page.php?format=rss20&id=249892678486419 onto my app
I have tried it in the bike example
when i change the bike rss to my facebook rss i just get the loading round thing and nothing elsehttp://query.yahooapis.com/v1/public/yql?q=select%20channel.title%2Cchannel.link%2Cchannel.item.title%2Cchannel.item.link%2C%20channel.item.pubDate%2C%20channel.item.description%20from%20xml%20where%20url%3D%22https%3A%2F%2Fwww.facebook.com%2Ffeeds%2Fpage.php%3Fformat%3Drss20%26id%3D249892678486419%22&diagnostics=true
if i leave the bike custom.js as it is it works fine but my code doesnt work. please help. Thanks
May 14, 2013 at 8:46 am #339088
BrandonMemberTry this RSS reader its much better and does not rely on third party sites:
http://www.genuitec.com/support-genuitec/viewtopic.php?f=14&t=5212May 14, 2013 at 10:00 am #339093
virtualmasterMemberi tried that too but i was stuggling with it too. can you tell me where i put my facebook feed url on that example you mentioned? thanks
May 14, 2013 at 6:42 pm #339113
support-octavioMemberTo understand the dynamic list example that cincyplanet has shared with you follow the flow of the create_list function in the _custom.js file. Hope this is helpful.
May 15, 2013 at 11:44 am #339129
virtualmasterMembertried that already but it doesnt work with my url can you please try and let me know it works for then i will know its me and not the software. thanks
May 15, 2013 at 3:24 pm #339132
virtualmasterMemberi have tried replacing http://ax.itunes.apple.com/WebObjects/MZStoreServices.woa/
ws/RSS/topfreeapplications/sf=143441/limit=10/xml with my url http://fbrss.com/f/8570948f5a7b8b9587399ac542092f70.xml it just gives a blank screen. I am sorry if i am doing it wrong my background is not programming hence i brought this software thinking i can avoid coding. I cannot find any tutorial for the example otherwise i would have tried it myself.May 15, 2013 at 4:36 pm #339136
virtualmasterMemberits ok i managed to fix the issue
basically you need to make sure the var are macthing to the names on the rss feed you are trying to link.May 16, 2013 at 5:07 am #339148
virtualmasterMemberOk now it works fine in mobione test but as soon i run publish it it stops working on mobione test. please see attached the product files
Attachments:
You must be logged in to view attached files.May 16, 2013 at 6:47 am #339149
BrandonMemberI have had the same problem with Facebook feeds. They make it very hard for developers to grab what should be a simple feed for timeline or photos. I have stopped trying to grab feeds and suggest Flickr for photos and wordpress for news feeds and have started using just a web link for the Facebook.
May 26, 2013 at 10:40 am #339407
virtualmasterMembermy external xml file:
<title>My Title</title> <link>My Link</link> <thumbnail>My image</thumbnail>
in mobione i have
var $xml = $(data); $xml.find("item").each(function() { var $this = $(this), item = { title: $this.find("title").text(), image: $this.find("thumbnail").text() } list_items.push(item); });
problem
Ok right now the script is only show the <thumbnail> working
It is not reading the text <title> Not working
the other issue is that it is not showing or opening the <link> Not WorkingAppreciate your help Thanks
May 30, 2013 at 1:37 pm #339545
support-michaelKeymasterDid you have any success parsing the xml file?
If no can you post a real xml doc example? -
AuthorPosts