How to post message on facebook page via a user - facebook

I have an facebook application in my website. i want to publish a user's profile link and some other stuff to my facebook page automatically. But currently this is being posted via page admin not user. How i can fix it?

Related

How to post website updates to Facebook page

I run a PHP-coded website with user submitted material and I am looking for a way that anytime new content is added to the site a post appears on my Facebook page (not profile). I used to be able to do this with the secret Facebook posting email but Facebook has quietly killed that feature. How can I do this in PHP?

Facebook check wherever user has gave like to specific fb page

I have user that logged in with fb connect to my web application, May I know if this user had gave like to any specific fb business page (using facebook graph api).

C# Facebook sdk: posting on page on owner's behalf

I have a page on facebook and i want to get my page access token so that i could use it to post ob my page from a mobile application or web application using the facebook sdk for C#.
I think the whole idea would be:
user will go to my webpage.
user will then login to facebook.
user will be taken back to my page with the his page's access token.
i will save this access token and then use it to post on his page on his behalf.
Right now i am not sure whether these are the right steps or not and if i am right, how can i make a facebook login page where user can use?
EDIT:
I found some answer here: Programatically log in to facebook and post from server side
do i need to create a facebook app for that?

fb app post on users wall

How to make a fb application that operates like this:
When a user visites a page of MY website ex. http://www.mywebsite.com/page1.php it will request the user to confirm the Facebook Application to make able the content of page, and then the application will post on users wall the page that the user visited on my page !?
Any idea, any script, any everything, I dont know how to even start it.
First, when the user enters your website ask him to login with facebook (ref: login).
After the successful authorization, simply use the Feed Dialog and post the link to current page on his wall.

Facebook request change according to different login

Will the facebook fetching a tab application differs according to different login?
If I am login as application admin or page admin then facebook fetches the application through POST and if i am login as a normal user, then facebook fetches the page through GET
As I know, Facebook integrate with your app (iframe) with only one method (i.e POST). Everything you put on app URL facebook will post to your iframe.
For example apps.facebook.com/your_app/id/1, Facebook will POST id=1 to your iframe.
However, you can check an user whether is an app/page admin or not by using Open Graph API:
http://developers.facebook.com/docs/reference/api/page/#admins
I think you question somehow relate to this:facebook application API check if user is application admin in facebook
Hope this will helps.