accountUpdateDeliveryDevice() публичный Метод

Sets which device Twitter delivers updates to for the authenticating user. Sending none as the device parameter will disable SMS updates.
public accountUpdateDeliveryDevice ( string $device, bool[optional] $includeEntities = null ) : array
$device string Must be one of: sms, none.
$includeEntities bool[optional]
Результат array
Пример #1
0
 /**
  * Tests Twitter->accountUpdateDeliveryDevice
  */
 public function testAccountUpdateDeliveryDevice()
 {
     $this->markTestSkipped('No example data available at https://dev.twitter.com/docs/api/1.1/post/account/update_delivery_device');
     $response = $this->twitter->accountUpdateDeliveryDevice('none');
 }