create() public method

Creates an identity
public create ( string $label, string $master = false, string $status = 'active' ) : mixed
$label string
$master string
$status string
return mixed
Beispiel #1
0
 /**
  * @dataProvider createProvider
  * @covers Datasift_Account_Identity::create
  */
 public function testCreate($label, $master, $active, $apiResult, $expectedResult)
 {
     $identity = new DataSift_Account_Identity($this->_user);
     DataSift_MockApiClient::setResponse($apiResult);
     if (isset($expectedResult['error'])) {
         $this->setExpectedException('DataSift_Exception_APIError');
     }
     $result = $identity->create($label, $master, $active);
     $this->assertEquals($expectedResult, $result);
 }
Beispiel #2
0
echo "Creating user...\n";
$user = new DataSift_User(USERNAME, API_KEY);
$service = 'facebook';
$label = 'test-' . time('U');
try {
    $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);