freshbooks APIでcURLを使用して頭を包み込もうとしています。OpenAuth とトークン ベースの 2 つの認証方法があります。トークンベースの方法を使用しようとしています。以前に cURL を使用したことがありますが、認証資格情報は常に渡される xml に含まれていました。
freshbooks では、cURL リクエストのヘッダーに資格情報を渡す必要があるようです...と思います。以下は、OpenAuth メソッドを使用したサンプル コードです。トークンベースの認証を使用して、ユーザー名とパスワードのみを渡すことを想定しています。
cURL リクエストで資格情報を適切に渡すにはどうすればよいですか?
http://developers.freshbooks.com/authentication-2/#TokenBased
private function buildAuthHeader()
{
$params = array(
'oauth_version' => '1.0',
'oauth_consumer_key' => $this->oauth_consumer_key,
'oauth_token' => $this->oauth_token,
'oauth_timestamp' => time(),
'oauth_nonce' => $this->createNonce(20),
'oauth_signature_method' => 'PLAINTEXT',
'oauth_signature' => $this->oauth_consumer_secret. '&' .$this->oauth_token_secret
);
$auth = 'OAuth realm=""';
foreach($params as $kk => $vv)
{
$auth .= ','.$kk . '="' . urlencode($vv) . '"';
}
return $auth;
}
public function post($request)
{
$this->fberror = NULL;
$headers = array(
'Authorization: '.$this->buildAuthHeader().'',
'Content-Type: application/xml; charset=UTF-8',
'Accept: application/xml; charset=UTF-8',
'User-Agent: My-Freshbooks-App-1.0');
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $this->apiUrl());
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $request);
$response = curl_exec($ch);
curl_close($ch);
$response = new SimpleXMLElement($response);
if($response->attributes()->status == 'ok')
return $response;
else if($response->attributes()->status == 'fail' || $response->fberror)
throw new FreshbooksAPIError($response->error);
else throw new FreshbooksError('Oops, something went wrong. :(');
}