Well, I searched for more than an hour on this topic and can only find OAuth solutions that I don't need or need.
I need to authenticate as I am on Facebook from a place other than Facebook. I need my site (admin zone) to authenticate to Facebook for me and post on my behalf, on my wall or the wall of my friends. This is an administration tool and I donβt want to log in to Facebook every time I post to my site. I need this extension to log in to log in and add an automatic entry with the title and image: "New message on example.com".
It seems like I searched everywhere and can only find solutions with the creation of the FB application, granting it certain rights, using oauth, etc. an overly complex process that (dare-i-say) is pretty dumb because I donβt want to authenticate other people like visitors. I just want to imitate my (my own browser), as if I'm the one who views their pages, and not an automated tool. Of course, I could probably go cURL the way and emulate the real user agent, but I'm not going to start flushing FB pages.
Is there a software-based authentication method for FB using a simple user / pass (not even stored on the server) and get the same rights that I usually get when authentication through a browser? And, of course, get the necessary data in json or other machine syntax encapsulation? I would suggest that I need to send a cookie or some form of token to susequent requests, but this is not a problem, I just need a way to authenticate with a simple user / pass and bypass this registration as a whole.
I need something similar to twitter and google +, maybe (?) I found a simple class for twitter, but there was nothing in google + (the same problem, Twitter is progressing a lot to build my application and use oauth, but they support authentication method as yourself through simple REST requests).
source share