update() public method

Updates the token for a service
public update ( string $identity, string $service, $token ) : mixed
$identity string
$service string
return mixed
Ejemplo n.º 1
0
 /**
  * @dataProvider updateTokenProvider
  * @covers Datasift_Account_Identity_Token::update
  */
 public function testUpdateToken($identityId, $service, $token, $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->update($identityId, $service, $token);
     $this->assertEquals($expectedResult, $result);
 }
Ejemplo n.º 2
0
 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";
 unset($res);
 echo "\nGetting limits...\n";
 $res = $limit->getAll($service);
 $r = $res['limits'];
 echo $r['id'] . " - " . $r['service'] . " - " . $r['total_allowance'] . " - " . $res['analyze_queries'] . "\n";
 unset($res);