I've tried to post Japanese message to wall from my Android app via Facebook SDK.
But the message is shown like 日本語 on the wall (it should be 日本語).
Do I need to do something before posting?
P.S Of course English message is shown correctly.
Thanks for your help.
Related
I have encountered a GraphAPIError: (#500) Message contains banned content problem today when I use GRAPH API (via python) to POST URLs (even post http://www.google.com failed, but if I post it directly through my facebook page, it works)as comments. It used to working correctly.
Does anyone encounter the same problem or know how to solve that?
Thank you.
For anyone else having this issue - seems that if an FB user who is NOT validated with FB (hasn't given FB their cell phone etc) comments on some posts, they can get a 500 error. Once validated the error doesn't happen
We are trying to publish to the feed resource of an event using the Graph API. What happens is it seems to ignore any link that we post. It also does not seem the Graph API supports any option for posting a photo to the wall of an event.
We make the call to the event feed using the following parameters:
link='http://rfid-social-media.odinrfid.com/photo?photoId=000000000000000000102107'
name='John at Facebook Party'
message='Test Message 2'
caption='What a great time'
And we publish against the url:
https://graph.facebook.com/EVENT_ID/feed
The request response does go through successfully, but the link does not show up in the UI.
We can post a link to a regular page using the Graph API without issue. It does show in the UI with the link, thumbnail, caption, etc, all as it should.
Thanks..
This is a Bug and its reported and marked as confidential
With the below text and its also contain security hole
bug report link
Below is my bug report text.
Other details on this report are shown to Facebook employees only
I recently attempted to post on an event's wall using the Graph API, but only the message is posted; Everything else is not showing. e.g.
Link
Picture
etc
There is one more big thing that the post doesn't show; That this post is post "via a Facebook app"
Note: posting on a page or user wall worked and also normal messages posted on an event 's wall.
The most important thing is when the post is shown on the event's wall "it does not show that its posted by a Facebook Application".
This is very dangerous; For example I can make an application and post nonsense on a user's wall. People will think that this is posted by the user.
Thank you so much for creating this question
For posting a photo to an event it seems to be a FB bug, subscribe and up the repo count so it gets attention
https://developers.facebook.com/bugs/225316074217855?browse=search_4f2f7576c5bc32d87041759
I am using the latest facebook sdk.
Everything works fine even the post on wall feature.
Thing is that the post to wall dialog contains minimal information. Just a textbox and a small label reading "... via app-name".
I have used the sample code snippet which provides things like 'caption' and 'description' but these are NOT shown in the post to wall dialog.
I have seen other apps with captions, descriptions and even a large image attached to the post.
How can I show these objects (caption, description, image etc..) using the facebook sdk ?
Thanks
I don't use the Facebook SDK so I just send POST requests with the necessary values. Similar to this:
Posting on Facebook Tutorial
There's another tutorial on the same blog that does use the SDK:
Posting with the Facebook SDK
I am posting a Link to a Webpage with Embedded video tags (youtube, etc..) through the Graph API to a Facebook Group. This causes the Video to be embedded in the stream but When you click play you get "There was a problem with the parameters of the request. Body of an error/warning message. Title is: Invalid Request"
Also this only happens when posting the link through the Graph API
Here is a Link to Show you this Error in action:
http://www.facebook.com/groups/209324852431956
I have created a bug here: (Please help vote this issue up)
http://bugs.developers.facebook.net/show_bug.cgi?id=19191
Here is a Link to a Very Similar Issue:
getsatisfaction.com/sendible/topics/playback_error_in_flash_posts_on_facebook_invalid_request
The solution they used above makes me believe that it is related to the flash player being used. I am using JW Player, but this also happens with youtube videos posted the same way.. and I have no Idea what player they are using.
It worked when I first started working on my project thesociable.me then one day it stopped.. and I went through every line of code related to posting links to videos.
Well, I had same problem... This alert only show on profile with Timeline activate.
If you post on profile without timeline... swf player does work normally.
I read this link
http://developers.facebook.com/bugs/283046815062713?browse=search_4f1e0678a12b73019079378
By the read... the issue is on proccess to solve
I am implementing the Facebook iOS SDK into my app... and find no problems with that. BUT, what I can't find to figure out is how to send basic wall post to my facebook app wall.
What I want to do is whenever a user searches for something, the app sends a wall-post with the following text "#someUser just searched for someSearchQuery" to my apps wall (not the users wall).
Offcource this is something I want the user to be able to switch on / off in the settings page, so the user is aware of it.
How can I do this?
Best regards,
Paul Peelen
Use the new Graph API as described here:
http://developers.facebook.com/docs/api#publishing
Quoting:
"For example, you can post a new wall post on Arjun's wall by issuing a POST request to https://graph.facebook.com/arjun/feed"
To use the Graph API from Facebook iOS SDK do something like:
[facebook requestWithGraphPath:#"[your app's id]/feed" andParams:params andMethod:#"POST" andDelegate:self];
where params is a dictionary with following optional keys:
message, picture, link, name, caption, description, source