Jose Vega
Jose Vega

Reputation: 10258

Facebook Connect send SMS with PHP

I created an application in Facebook and now I would like to notify my users whether a certain event has happened by sending them a text message. I have already included the sms permissions to my application, but I can't find any examples/documentation showing me how to properly send it with PHP.

The following is what I have so far:

 $smsrequest = $this->facebook_connect->fb->api('/sms.send/', 'GET',
      array(
           'uid'         => $user_id,
           'message'     => $message
      )
 );

Upvotes: 2

Views: 1644

Answers (1)

Andrew Makarenko
Andrew Makarenko

Reputation: 315

sms.send was deprecated http://developers.facebook.com/roadmap/deprecations/ http://forum.developers.facebook.net/viewtopic.php?id=82649

Upvotes: 2

Related Questions