getAll() public méthode

Get all the tokens for an identity
public getAll ( string $identity, integer $page = 1, integer $perPage = 25 ) : mixed
$identity string
$page integer
$perPage integer
Résultat mixed
 /**
  * @dataProvider getAllTokensProvider
  * @covers Datasift_Account_Identity_Token::getAll
  */
 public function testGetAllTokens($identityId, $page, $perPage, $apiResult, $expectedResult)
 {
     $identityToken = new DataSift_Account_Identity_Token($this->_user);
     DataSift_MockApiClient::setResponse($apiResult);
     if (isset($expectedResult['error'])) {
         $this->setExpectedException('DataSift_Exception_APIError');
     }
     $result = $identityToken->getAll($identityId, $page, $perPage);
     $this->assertEquals($expectedResult, $result);
 }
Exemple #2
0
 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";
 $res = $token->getAll($id);
 foreach ($res['tokens'] as $r) {
     echo $r['service'] . " - " . $r['token'] . "\n";
 }
 unset($res);
 echo "\nUpdating token...\n";
 $res = $token->update($id, $service, md5('test'));
 echo $res['service'] . " - " . $res['token'] . "\n";
 unset($res);
 echo "\nCreating limit...\n";
 $res = $limit->create($id, $service, 2000, 3000);
 echo $res['id'] . " - " . $res['service'] . " - " . $res['total_allowance'] . " - " . $res['analyze_queries'] . "\n";
 unset($res);
 echo "\nGetting limit...\n";
 $res = $limit->get($id, $service);
 echo $res['id'] . " - " . $res['service'] . " - " . $res['total_allowance'] . " - " . $res['analyze_queries'] . "\n";