Posting to facebook page as page from php [closed] - php

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I want to know if a php script from my website can post to facebook when a visitor posts a request on my website. If you have any suggestions, tutorials, useful articles or solution please post them.
Thank you in advance.

You have to use a Page Token to post "as Page". You can create an Extended Page Token that is valid forever. With that Access Token, use the /page-id/feed endpoint to post to the Page.
That is the basic principle, information on how to deal with Access Tokens can be found here:
https://developers.facebook.com/docs/facebook-login/access-tokens/
http://www.devils-heaven.com/facebook-access-tokens/
http://www.devils-heaven.com/extended-page-access-tokens-curl/
How to get an Extended Page Token in short:
Authorize a user who is Admin of the page with the "manage_pages" and "publish_actions" permissions
Extend the user token so it is valid for 60 days
Use that Extended Token to call /me/accounts to get Extended Page Tokens for all your Pages

Related

Instagram API check if a user is live [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
is it possible to use the Instagram api and check to see if a specific user is broadcasting a live video? and if yes get that video information and possibly a link?
You can't do This work with INSTAGRAM :
post a media
send a direct
see people story
see people is online or not
and ...
this work you want to do is not possible.
fore more information see instagram developer page and see what work you can do with their API :
http://www.instagram.com/developer

How to post data to my facebook page automatically? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I need to post some data to my page on facebook automatically with php.
I've searched and done some says but no success. Most of them are very old articles and it changes a lot since then.
Could you give me a new article or video to do so?
You can go to developers.facebook.com and they have all the guides you need to get started.
Here's a link for using their PHP API in your application. Later you can read on doing things like Posting Links and stuff like that.
Remember that you first need to have an APP ID.
All the best ;)
Refs:
Facebook PHP API
Posting a link to a timeline - FB
You need an Extended Page Token, and you need to post to the /page-id/feed endpoint.
About Extended Page Tokens (and Tokens in general):
https://developers.facebook.com/docs/facebook-login/access-tokens
http://www.devils-heaven.com/facebook-access-tokens/
http://www.devils-heaven.com/extended-page-access-tokens-curl/
About the feed endpoint, see this page for code examples and information: https://developers.facebook.com/docs/graph-api/reference/v2.1/page/feed

Private Twitter application? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I'm looking to implement Twitter into an internal existing system. I need to use several features of the API (such as mentions) that require authorization.
From my understanding, this can only be used with a Twitter application, and as such I've created one.
However it all seams very public facing, asking for details like website URL, and application description, which in my case I do not need or want.
I simply need to authorize my system to make calls to the API, am I going about it the right way?
If not, is there a certain PHP library / alternative way of getting autorized? I can't imagine i'm first in this situation?
Thanks!
You'll need to provide these details so Twitter knows what kind of application you're building. If your application is not going to publish any tweets, that's entirely fine; if you're simply making GET requests, your application information won't be published anywhere.
If you don't have a public-facing URL for your application, you can enter a placeholder or a fake URL.

How do I post to Google Plus via PHP? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I was wondering if there's already a floating unofficial PHP library or class that I can use to be able to post to user's Google Plus stream? I'm not talking about the new option on the +1 buttons. I only want it to publish to their stream and not with the +1 button method. Sorry if this has been asked already but I can't locate any question that has the same concept as mine.
Any help is greatly appreciated.
No. There is no API currently.
Update: Sept 15, 2011 saw the release of the Google+ REST API: https://developers.google.com/+/api/
We definitely plan to involve developers and publishers in the Google+ project, but we don’t have specific details to share just yet. Please stay tuned and sign up to receive more information about Google+ developer opportunities. https://services.google.com/fb/forms/plusdevelopers/
I found this site which seems to allow people to post to their user stream - http://www.d3.do/labs/circleoftrust/index.php

Which book or blog for Facebook + PHP newbie? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am going to develop a PHP app with Facebook integration. Any book/blog/sample you recommend? The features of the app are:
only logged-in Facebook users can access the app
the app will post an status message on the user's wall on request (e.g. I'm answering this interesting survey)
the app is a survey, records answers which links to a user's Facebook ID
each facebook user can answer once only
the app wil send a summary of the survey to the user's facebook email
Thanks!
The one and only source i can recommend it's their reference guide.
Of course there's a possibility you can't find some information there but there's no better starting point than this.

Categories