accountInfo() 공개 메소드

Retrieves information about the user's account.
public accountInfo ( ) : array
리턴 array
예제 #1
0
 /**
  * Tests Dropbox->accountInfo()
  */
 public function testAccountInfo()
 {
     $response = $this->dropbox->accountInfo();
     $this->assertArrayHasKey('referral_link', $response);
     $this->assertArrayHasKey('display_name', $response);
     $this->assertArrayHasKey('uid', $response);
     $this->assertArrayHasKey('email', $response);
 }