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

Returns the befriended user in the requested format when successful. Returns a string describing the failure condition when unsuccessful. If you are already friends with the user a HTTP 403 may be returned, though for performance reasons you may get a 200 OK message even if the friendship already exists. Actions taken in this method are asynchronous and changes will be eventually consistent.
public friendshipsCreate ( string[optional] $userId = null, string[optional] $screenName = null, bool[optional] $follow = false ) : array
$userId string[optional]
$screenName string[optional]
$follow bool[optional]
Результат array
Пример #1
0
 /**
  * Tests Twitter->friendshipsDestroy
  */
 public function testFriendshipsDestroy()
 {
     $response = $this->twitter->friendshipsCreate(null, 'tijsverkoyen');
     $response = $this->twitter->friendshipsDestroy(null, 'tijsverkoyen');
     $this->isUser($response);
 }