Facebook message to page - facebook

Is there a way how I can send regular message to facebook page?
I got this:
https://github.com/Schmavery/facebook-chat-api
but it is unofficial.
When I've tried to send several messages sending account was blocked.
I have not found any info about limits or anything else connected to sending messages to Facebook pages.
In official Facebook documentation regarding messaging API there is nothing about sending message to Page. As bot is acting as Facebook Page itself I suppose it can't send message to another Facebook Page.

There is no API to send user to page messages, you can only send messages from page to user. And only if the receiver started the conversation first.
DonĀ“t use unofficial ways, they are not allowed.

Related

Send message through Facebook API from personal account to a page?

Is their a way to send a private message on Facebook from your personal account to a Facebook page, from an external app ? (through the API or else)
Exactly as if you were contacting a page manually, by I wanna be able schedule the messages to send to the page, and let a software send it for you.
I've seen so many topics in SO but no one giving a answer to this specific situation.
Thanks
No, that is not possible.
You can not automate sending user messages at all.

Send attachment inbox

I want to send inbox messages on facebook with a attachment. Thats possible?
Reference: https://developers.facebook.com/docs/reference/api/message/
Facebook does not allow to send messages to users using Graph API (avoiding spam) with 1 exception, as a page you can reply to messages from users.
The only way of sending messages like that is using the Chat API (XMPP) but it is more complex
Not with the new Graph API, but the PHP-SDK; you can see it in the answer of Peter Bailey here:
Facebook Posting API Question

Facebook api feed : how post message in a single user wall?

I use facebook SDK javascript to post a message from a website to my wall on facebook.
When I post, I can choose the users who can read my message.
Can I change the script to send a message directly to one or any users automatically?
To send a private message through facebook API is not intended behavior. to prevent spam it is assumed. This can be overcome by sending an email to facebook_username#facebook.com and it will appear as an instant message to the user. This is NOT an intended solution however and it is EXPRESSLY discouraged in the facebook docs.

issue in sending private message to facebook friends with facebook application

i am working on a facebook application , i need to send a message to user facebook friends , is that possible to send without opening the facebook send message dialog box, because when i use facebook SDK it uses its ui to preview , i also tried using direct url
http://www.facebook.com/dialog/send?app_id=658662621626&name=People%20Argue%20Just%20to%20Win&recipients[0]=466565&link=http://www.redbuffer.com&redirect_uri=http://www.example.net/FB-app/
is their any other method by which i will be able to send private message
to facebook friends
My initial thought is a resounding heck no. The reason? They would open themselves up to spamming if they allowed API's to directly send messages. Just a guess though.

Send Message to Friend On Facebook with C#

I am new on Facebook API. I want to send message to friend with facebook api. I am developing a desktop application in c#. And I used graph.facebook.com but I can see just some information. I think that to login facebook system and after send message some id. I looked developers.facebook.com but I didnt find useful information. Maybe I looked in wrong way..
I need some advice about it (how to login and send message)
I followed function of messange sendin on google chrome and I saw send.php worked . But I want to use Facebook API
By design Facebook does not allow the API to send messages. You can post on the other users wall, or send them an email.