You cannot post messages because only members can post, and you are not currently a member.
|
Exchange access_token
|
| |
Basically what't im trying to figure out is how to make this exchange access_token call via Rails / mini_fb If i fill in the blanks with my own data and pop that URL in a browser window it returns the original access_token but at least the api call is working.. [link]... more »
|
|
Managing Offline Permissions + Expired access_token(s)
|
| |
Hey. I've just read this blog post on Facebook. I couldn't really understand wtf they're talking about and was wondering if any mini_fb users are more clued up that I am when it comes to this stuff. from my understanding, they're killing the offline_access permission and replacing it with some overly complicated short or long lived access_token... more »
|
|
Posting to multiple pages concurrently?
|
| |
Hey.
My app performs posts on user's behalf on a regular basis
The app posts to both profiles and pages
often when posting to pages, the 2nd and so on posts to a users page
get rejected by Facebook for:
Facebook error 400: OAuthException: (#100) The status you are trying
to publish is a duplicate of, or too similar to, one that we recently... more »
|
|
undefined method `can_post' for #<MiniFB::GraphObject:0x104d2c3f0>
|
| |
Hello MiniFB People. Im trying to write a method that takes a Facebook User or Facebook Page's saved access token and validates the credentials to see if my app still has permission to post on their behalf. Im running this code through the DB of over 1500 Users + Pages (for a facebook page) fb = MiniFB::OAuthSession.new(clien t.fb_token, 'en_EN')... more »
|
|
Help! Facebook error 403: OAuthException: (#210) Subject must be a page.
|
| |
Hello. Im trying to post status updates to certain Pages that the Page owners have granted my App persmissions for. the majority of the posts work but I get a bunch of errors returned, ranging from duplicate status message errors through to permission errors when people don't grant the correct permissions.... more »
|
|
Uploading a Photo using Graph API
|
| |
Hello,
I'm attempting to use mini_fb to upload a photo to a facebook users
album.
I see in the documentation how to do so using the old API:
@fb.call("photos.upload", "file_name"=>"full path to file")
However, I can't get it to work using the graph api doing something
like:
MiniFB.post(facebook_token,fac ebook_id, { :type => 'photos', :source... more »
|
|
Error in MiniFB, how to bypass?
|
| |
Hey.
I am attempting the following:
fb = MiniFB::OAuthSession.new(clien t.fb_token, 'en_EN')
begin
success = fb.post(fb.me.id, :type => :feed, :params => {:message
=> message})
rescue MiniFB::FaceBookError => exception
# Some Error Handling.
end
This works in 90% of cases and if there is an error it is caught by... more »
|
|
|