Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I want to make an iPhone OS app for a Wordpress blog, and I'm unable to figure a way to grab the data from the blog.
The XML-RPC doesn't seem to have an anonymous read-only mode
The RSS feed has truncated posts
So, if anyone managed to make it, please help me ;)
the RSS is truncated if it is configured to be so, you can publish the entire blogpost in wordpress, cfr. "settings -> reading settings -> For each article in a feed, show (full text/ summary)"
The newsfeed may contain the full post. This is an option for the blog owner (option: 'rss_use_excerpt' = 0).
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I have a Facebook page and i want to publish my joomla website articles in this page, that mean after add a new article in my website automatically published in the facebook page, here is my web site, so plz if someone has any idea i will be very appreciative :)
There are a lot of developed plugins and components which will do the job. Check the Joomla Extensions Directory, you will see, that there are commercial and non-commercial solutions that might fit your needs.
This one http://extensions.joomla.org/extensions/social-web/social-share/social-multi-share/18072 comes with auto publish to Facebook and Twitter. I'm using it on my site and it has an auto Facebook page import function in the plugin parameters itself. It has all the configuration options you need.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I want a news feeds on facebook in my site that show only the wallpost that have a specific {#hashtag}.
For Example I want to show only my wallpost that has #thankyou.
I'm newbie so please give a sample code. Thanks in advance.
There isnt any exact API to get the hashtag posts,you may try using search API with q=%23hashtag
https://graph.facebook.com/search?q=%23hashtag&type=post&access_token={ACCESS_TOKEN}
For getting wall posts and newsfeeds
/user/home The user's news feed.
https://graph.facebook.com/me/home?q=%23hashtag&type=post&access_token={ACCESS_TOKEN}
/user/feed The user's wall.
https://graph.facebook.com/me/feed?q=%23hashtag&type=post&access_token={ACCESS_TOKEN}
Permissions :read_stream
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions concerning problems with code you've written must describe the specific problem — and include valid code to reproduce it — in the question itself. See SSCCE.org for guidance.
Closed 9 years ago.
Improve this question
My Facebook comment plugin has stopped working. It loads as an empty element (so nothing loads, basically)
Code can be seen directly on this page.
url: http://www.jamesthemusician.com/kudos
It was working this morning and I did not change the code.
It seems to be related to the use of arguments. Currently it is configured to relate the comments to the url http://www.jamesthemusician.com/kudos?ver=prod. If I remove the argument (?ver=prod) it works. I can't do that, though, since I would loose all the comments already associated with the page.
Any ideas?
Also, the moderation tool seems to have disappeared.
EDIT: The problem only occurres if I am logged in in Facebook as the administrator of the application. If I log out, then the comments load correctly.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I'm trying to collect posts from public Facebook users that have a certain word such as, holiday, marriage, etc. What are the best tools and approaches to collect this data?
Use an implementation like this:
https://graph.facebook.com/search?q=Microsoft&type=post&fields=link,message&access_token=YOUR-API-ID|YOUR-APP-SECRET
It fetches results like you have requested. Make sure this call is going on at your server, so that your API ID or API Secret is not exposed.
P.S. If you do not have an app setup, visit Facebook Dev Page
Cheers.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
is it possible to get list of uids of users who is fan of specific fan page with facebook api ?
I have not (yet) found a method to retrieve all the fans for a page without a key.
You can get a verification if a user is a fan, according to Facebook at least. In practice, use of the method still requires a key.
I'm actually looking for thesame thing, and from the looks of it, the answer is no. User list is not one of the properties you can read according to this page.