开发者

Facebook Connect send SMS with PHP

开发者 https://www.devze.com 2023-02-27 09:33 出处:网络
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 appl

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/docum开发者_开发问答entation 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
      )
 );


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

0

精彩评论

暂无评论...
验证码 换一张
取 消