get() public method

Returns an identity
public get ( string $identity ) : mixed
$identity string
return mixed
Beispiel #1
0
 /**
  * @dataProvider getProvider
  * @covers Datasift_Account_Identity::get
  */
 public function testGet($identityId, $apiResult, $expectedResult)
 {
     $identity = new DataSift_Account_Identity($this->_user);
     DataSift_MockApiClient::setResponse($apiResult);
     if (isset($expectedResult['error'])) {
         $this->setExpectedException('DataSift_Exception_APIError');
     }
     $result = $identity->get($identityId);
     $this->assertEquals($expectedResult, $result);
 }
Beispiel #2
0
 $identity = new DataSift_Account_Identity($user);
 $token = new DataSift_Account_Identity_Token($user);
 $limit = new DataSift_Account_Identity_Limit($user);
 $res = $identity->getAll();
 echo "\nGetting identities...\n";
 foreach ($res['identities'] as $r) {
     echo $r['id'] . " - " . $r['label'] . "\n";
 }
 unset($res);
 echo "\nCreating identity...\n";
 $res = $identity->create($label, true);
 echo $res['id'] . " - " . $res['label'] . "\n";
 $id = $res['id'];
 unset($res);
 echo "\nGetting identity...\n";
 $res = $identity->get($id);
 echo $res['id'] . " - " . $res['label'] . "\n";
 unset($res);
 echo "\nUpdating identity...\n";
 $res = $identity->update($id, $label . '-updated', true, 'active');
 echo $res['id'] . " - " . $res['label'] . "\n";
 unset($res);
 echo "\nCreating token....\n";
 $res = $token->create($id, $service, md5('test'));
 echo $res['service'] . " - " . $res['token'] . "\n";
 unset($res);
 echo "\nGetting token...\n";
 $res = $token->get($id, $service);
 echo $res['service'] . " - " . $res['token'] . "\n";
 unset($res);
 echo "\nGetting tokens...\n";