Post wall message on facebook account - facebook

I am trying to implement some functionality in a blackberry app, that I saw in other application.
Basically it's a window that has a message, and a Facebook icon. When you click on the icon it launches a new window, this window asks the user for permissions(user and password), and then the message is posted in the user's wall.
So my question is how can I replicate that?. I have been looking at the graph api, but I just can't figure out how to do all of this in one step. I mean just typing the url in the browser, and some post data.
Thanks a lot.

Have you looked at the Facebook BlackBerry SDK project? Facebook BlackBerry SDK

Related

Linking to unity mobile app from facebook open graph post

At the moment, if someone clicks on an open graph post made by my app, it goes to the URL of the object. I would like to send the user to the iOS or Android app depending on what platform they see the Open Graph post. My app does not have a canvas version. I looked into AppLinks but I can't seem to find any documentation on an end to end example for Unity. Is there any way to reliably redirect the user to your app from an Open Graph post?

Misconfigured: App Sorry, That Helps hasn't been approved for display in App Center

I have a simple Facebook App that I use to allow users of my website to login with Facebook. Recently I added a basic custom story via the open graph API, e.g.
Nick plays a mixtape via anexample.com
The custom story appears in my stream as expected, however when I click the anexample.com link on the story I get the following error and cannot access the actual Facebook App page:
Sorry, the details for anexample.com cannot be displayed because the app is
misconfigured.
What is strange, is that the application redirects at
https://www.facebook.com/games/?app_id=AN_APPLICATION_ID
despite the fact that the app is not registered as a game.
Has anyone else faced this behaviour?
Thanks,
On tapping on the App link, you could navigate it in one of the two possible ways
Any FB page: Add the page in Advanced settings of your App.
A website: Add a web platform

Open IOS Application which uses sharekit via fbconnect and/or sharekit from facebook app or facebook website

Does anyone of you know if it is possible to open a App which uses sharekit from a Facebook request by clicking on the request either in the facebook app, or in the browser?
I could not find anything about this in the web.
To be more precise i want my app which uses sharekit to send a request to a facebook-friend. This facebook friend should then be able to open the same app by clicking on the request either in the facebook app on his mobile device or by clicking on the request on the facebook browser page which is opened on his mobile device.
I already know how to share things in facebook via sharekit, but to get it "the other way round" seems to be difficult. I could not find anything helpful in the web so far.
Greets and many thanks in advance,
Maverick1st
Yes. Your will will need to register itself as a protocol handler, and the link clicked on from Facebook app would need to use the url scheme you define.
Example:
my-social-app://invite/1234
Keep in mind if the recipient does not have the app installed, or they do this on their desktop machine, they will get a message that the phone is unable to open that URL.
See this tutorial: http://mobileorchard.com/apple-approved-iphone-inter-process-communication/

iPhone app facebook post to wall uses random "Share" app

I'm doing a standard post to wall using iphone facebook sdk. The problem is that when I do the post, the wall post links to a generic app called "Share" instead of my app.
This is the app it is linking to
https://www.facebook.com/apps/application.php?id=206749070441
I'm providing my app key/secret to the SDK so I don't see why it is doing this. Thanks for your help!
That is most likely what you provided for your app's name when you created your key/secret.
To edit it, after you have logged in to Facebook goto: https://developers.facebook.com/apps
You should see a list of your apps, and can edit them there...

Post On Facebook Wall From Windows Phone

I want my application to post something on Facebook wall. My application is supposed to run on WP7.
Is there any way of opening a web browser with a default Facebook (hosted on Facebook server) publishing form? I see different websites opening a new window with that form when Share button is clicked and then you click Publish and here you go - the post is on the wall :)
WebBrowserTask is pretty limited and seems to be able to send only GET data but even then... I don't know what kind of data and how named it should be sent. Anyone?
Why not use the Facebook Developer's Toolkit to post via API instead of trying to use a browser?
You can try Post to Facebook user wall using Facebook.dll in WP7.
If you want to post on someone other than the user's wall, then the Facebook SDK is required. But if you just want to quickly add the option to share something to Facebook, you could just open a new WebBrowserTask and have it go to http://www.facebook.com/share.php, and just add u and t to the URL. u being the URL to share, and t being the Title.
But from what's been said it seems the SDK is what your going to want.