[Solved] How to post text on friends wall using latest facebook sdk in IOS

You can post on friends wall by using FBWebDialogs class of Facebook SDK. For that you need friends facebook id in parameters in dictionary as below NSMutableDictionary *parmaDic = [NSMutableDictionary dictionaryWithCapacity:5]; [parmaDic setObject:link forKey:@”link”]; // if you want send picture [parmaDic setObject:@”NAME” forKey:@”name”]; // if you want to display name [parmaDic setObject:message forKey:@”description”]; // if … Read more

[Solved] log into Facebook directly through a php script

It´s not possible to do that, for very good reasons. You need to use an App and implement login: https://developers.facebook.com/docs/facebook-login/v2.3 You can´t just store username and password and auto-login with a PHP script. 1 solved log into Facebook directly through a php script

[Solved] Facebook wall post [closed]

Quoting from facebook “Feed Dialog” docs: message This field will be ignored on July 12, 2011 The message to prefill the text field that the user will type in. To be compliant with Facebook Platform Policies, your application may only set this field if the user manually generated the content earlier in the workflow. Most … Read more

[Solved] Facebook & Jquery – Share to show [closed]

If you’re using the Javascript SDK to publish stories, show the content in the callback response when a user shares content successfully: FB.ui( { method: ‘feed’, name: ‘Google’, link: ‘http://www.google.com/’, picture: ‘http://google.com/xyz.jpg’, caption: ‘Google Logo’, description: ‘Search away’ }, function(response) { if (response && response.post_id) { // YOUR CODE GOES HERE // e.g. $(“#some_div”).show(); } … Read more

[Solved] publish a message on facebook without user approval [closed]

You have to request permission via the API to access users profile on facebook. Posting to a users wall or sending them a message without any approval would be bypassing facebook’s platform policy and should facebook find out about this activity they will surely shut down your application and possibly block your developer account.NOT recommended. … Read more

[Solved] Facebook friends list in swift

You haven’t given much code, but it looks like you are forgetting to cast your data array after you’ve retrieved the information. It’s kind of hard to tell without looking at your other code, but you might find this answer useful. Here is an example of proper data casting and retrieval. func tableView(tableView: UITableView!, didSelectRowAtIndexPath … Read more

[Solved] What are the programming languages for stalking facebook friends [closed]

I could think of following two ways: You will need to use Facebook Graph API to monitor posts by user https://developers.facebook.com/docs/graph-api/reference/v3.0/post. But for that, the user should give permission to your app or the post should be public. Graph API SDK is available for PHP, Javascript, Android, and IOS. Another way I could think is … Read more

[Solved] Facebook messenger bot Webhook not working [closed]

Add the other user to be a tester for the Facebook app, this will give them access to the bot before it is formally approved by Facebook. EDIT: Information regarding messenger bot submission can be found here: https://developers.facebook.com/docs/messenger-platform/app-review 3 solved Facebook messenger bot Webhook not working [closed]

[Solved] how to fetch user facebook friends names,count and id in app? [closed]

You’ll only be able to get the friends which also use your app, and you’ll need the user_friends permission for that. Please read the docs first: https://developers.facebook.com/docs/apps/changelog#v2_0_login https://developers.facebook.com/docs/graph-api/reference/user/friends Quotes: Friend list is no longer part of the default permission set and has its own permission: Asking for access to a person’s friend list is now … Read more

[Solved] HTML iframe not working when i write src= of facebook

Updating the page reference in the source (src) attribute will display the page you specified. <iframe src=”http://www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fbigfishlaspalmas&amp;width=320&amp;colorscheme=light&amp;show_faces=false&amp;border_color=&amp;stream=true&amp;header=false&amp;height=395″ scrolling=”no” frameborder=”0″ style=”border:none; overflow:hidden; width:320px; height:395px;” allowTransparency=”true”></iframe> src=”http://www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fbigfishbudapest&width=320&colorscheme=light&show_faces=false&border_color=&stream=true&header=false&height=395″ src=”http://www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fbigfishlaspalmas&width=320&colorscheme=light&show_faces=false&border_color=&stream=true&header=false&height=395″ solved HTML iframe not working when i write src= of facebook