2

zend gdata ライブラリを使用して 2 Legged OAuth アプリ (Google Marketplace アプリ) を作成しています。Google の連絡先を取得する必要があります。

以下のコード。

require_once 'Zend/Oauth/Consumer.php';
$oauthOptions = array(
    'requestScheme' => Zend_Oauth::REQUEST_SCHEME_HEADER,
    'version' => '1.0',
    'signatureMethod' => 'HMAC-SHA1',
    'consumerKey' => $CONSUMER_KEY,
    'consumerSecret' => $CONSUMER_SECRET
);

$consumer = new Zend_Oauth_Consumer($oauthOptions);
$token = new Zend_Oauth_Token_Access();
$httpClient = $token->getHttpClient($oauthOptions);

$url = 'http://www.google.com/m8/feeds/contacts/default/full';

require_once 'Zend/Gdata/Gapps.php';
$gdata = new Zend_Gdata($httpClient);

require_once 'Zend/Gdata/Query.php';
require_once 'Zend/Gdata/Feed.php';
require_once 'Zend/Gdata/App.php';

$query = new Zend_Gdata_Query($url);
try {
    $feed = $gdata->getFeed($query);
} catch(Zend_Gdata_App_Exception $ex){
    print_r($ex->getMessage());
}

次のエラーが表示されます。

Expected response code 200, got 401
Unknown authorization header
Error 401



上記のコードの実行時に送信される HTTP ヘッダーは次のとおりです。

GET /m8/feeds/contacts/default/full HTTP/1.1
Host: www.google.com
Connection: close
User-Agent: MyCompany-MyApp-1.0 Zend_Framework_Gdata/1.11.0dev
Accept-encoding: identity
Authorization: OAuth realm="",oauth_consumer_key="686518909188.apps.googleusercontent.com",oauth_nonce="fc99e10f42cdb01c7f3ce1ab2775e616",oauth_signature_method="HMAC-SHA1",oauth_timestamp="1316583946",oauth_version="1.0",oauth_signature="hlbTvPExy4r4%2FyY1ddEsy1AJhf4%3D"

受信した HTTP 応答:

HTTP/1.1 401 Unknown authorization header
Content-Type: text/html; charset=UTF-8
Date: Wed, 21 Sep 2011 05:45:47 GMT
Expires: Wed, 21 Sep 2011 05:45:47 GMT
Cache-Control: private, max-age=0
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
Server: GSE
Connection: close

<HTML>
<HEAD>
<TITLE>Unknown authorization header</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000">
<H1>Unknown authorization header</H1>
<H2>Error 401</H2>
</BODY>
</HTML>


ここで何が欠けているのか教えてください。

4

5 に答える 5

2

2-legged OAuth (xoauth) を使用している場合、「xoauth_requestor_id」リクエスト パラメータが設定されていないようです。

Zend_Gdata_Calendar コンストラクターに渡される HttpClient オブジェクトで、このクエリ パラメーターを設定してみました。

$httpClient->setParameterGet('xoauth_requestor_id', $userEmail);

しかし残念ながら、このクリーンなアプローチはうまくいきませんでした。Zend_GData_Calendar クラスは、注入された HttpClient オブジェクトを十分に活用していないようです。

そこで、代わりに Zend_GData_Calendar を拡張し、カスタマイズしたバージョンをインスタンス化することにしました。すべての機能を完全にテストしたわけではありませんが、これまでのところ、簡単に構築できるものを次に示します。

/**
 * Slightly modified class which extends Zend_Gdata_Calendar. Fixes a problem with the request URI when using 2-legged
 * OAuth (xoauth). Adds on the xoauth_requestor_id query parameter.
 */
class Xoauth_Gdata_Calendar extends Zend_Gdata_Calendar {
    protected $requestorId;

    /**
     * Set the xoauth_requestor_id for requests
     *
     * @param string $requestorId
     */
    public function setRequestorId($requestorId) {
        $this->requestorId = $requestorId;
    }

    /**
     * Get the currently set xoauth_requestor_id
     *
     * @return string
     */
    public function getRequestorId() {
        return $this->requestorId;
    }

    /**
     * {@inheritdoc} extended to also include the xoauth_requestor_id query parameter in the request URI. This fixes
     * an authentication issue when using 2-legged OAuth (xoauth).
     *
     * @return string|Zend_Gdata_App_Feed
     */
    public function getCalendarListFeed() {
        $uri = self::CALENDAR_FEED_URI . '/default';
        if($this->requestorId) {
            $uri .= '?xoauth_requestor_id=' . urlencode($this->requestorId);
        }

        return parent::getFeed($uri,'Zend_Gdata_Calendar_ListFeed');
    }
}

次にこれを使用するには、Zend_Gdata_Calendar 基本クラスではなく、このクラスをインスタンス化します。たとえば、setRequestorId($usersEmail) を呼び出すだけです。

$calendarClient = new Xoauth_Gdata_Calendar($httpClient);
$calendarClient->setRequestorId($userEmail);
于 2011-11-10T10:01:03.583 に答える
0

次のクリーンなアプローチが機能しない理由があります

$httpClient->setParameterGet('xoauth_requestor_id', $userEmail);

Zend / Gdata / App.phpの638行目では、次のように実行されます

// Make sure the HTTP client object is 'clean' before making a request
// In addition to standard headers to reset via resetParameters(),
// also reset the Slug and If-Match headers
$this->_httpClient->resetParameters();

これはリクエストごとに呼び出されるため、クライアントに設定したものは消去されます。

于 2012-03-01T21:07:15.820 に答える
0

カレンダーにアクセスしようとしたときに同じ問題に遭遇したので、イライラしました。Zen (1.11.10) からの最新のダウンロードを使用しています。

require_once 'Zend/Oauth/Consumer.php';
    require_once 'Zend/Gdata/Calendar.php';

    $CONSUMER_KEY = 'mydomain.com';
    $CONSUMER_SECRET = 'mysecret';
    $USER = 'user@mydomain.com';

    $oauthOptions = array(
        'requestScheme' => Zend_Oauth::REQUEST_SCHEME_HEADER,
        'version' => '1.0',
        'signatureMethod' => 'HMAC-SHA1',
        'consumerKey' => $CONSUMER_KEY,
        'consumerSecret' => $CONSUMER_SECRET
    );

    $consumer = new Zend_Oauth_Consumer($oauthOptions);
    $token = new Zend_Oauth_Token_Access();
    $httpClient = $token->getHttpClient($oauthOptions);


    // Create an instance of the Calendar service
    $service = new Zend_Gdata_Calendar($httpClient);

    try {
        $listFeed= $service->getCalendarListFeed();
    } catch (Zend_Gdata_App_Exception $e) {
        echo "Error: " . $e->getMessage();
    }
于 2011-09-20T22:52:52.247 に答える
0

この件について Zend にバグレポートを提出しました。ZF-11880を参照してください。このバグに投票して、優先度を上げるようにしてください。

于 2011-11-10T10:53:04.370 に答える
0

Xoauth_Gdata_Calendar修正は機能します。
また、イベントを投稿したい場合は、insertEvent()関数もオーバーライドする必要があります。

/**
 * {@inheritdoc} extended to also include the xoauth_requestor_id query
 * parameter in the request URI. This fixes an authentication issue 
 * when using 2-legged OAuth (xoauth).
 *
 * @return string|Zend_Gdata_Calendar_EventEntry
 */

public function insertEvent($event, $uri=null) {
    if ($uri == null) {
      $uri = $this->_defaultPostUri;
      if($this->requestorId) {
          $uri .= '?xoauth_requestor_id=' . urlencode($this->requestorId);
      }
    }
    return parent::insertEntry($event, $uri, 'Zend_Gdata_Calendar_EventEntry');
}
于 2012-05-11T13:47:52.433 に答える