API Googleを使用してアプリケーションを開発しています。この過程で、私たちはいくつかの困難に直面しました。
このページ「code.google.com/p/google-api-php-client/」にある php-sdk を使用しました Google Calendar サービスを使用しました。ここにあるドキュメントに従いました: 「developers.google.com/google-apps/calendar/v3/reference/」セクション カレンダーとイベント。
ソース データ: -「code.google.com/apis/console/」にある Google カレンダー サービスへのアクセスが許可されます -必要なユーザー認証が要求されます (ドキュメントに基づく: 「developers.google.com/google-apps/calendar/」 v3/参照/イベント/挿入)"
タスク: イベントをカレンダーに追加します。アクション: Post-Request をhttps://www.googleapis.com/calendar/v3/calendars/ {calendarId}/events?calendarId={calendarId}&alt=json&key={API キー}に送信します
リクエスト本文:
{
"\u0000*\u0000__creatorType":"EventCreator",
"\u0000*\u0000__creatorDataType":"",
"\u0000*\u0000__organizerType":"EventOrganizer",
"\u0000*\u0000__organizerDataType":"",
"\u0000*\u0000__attendeesType":"EventAttendee",
"\u0000*\u0000__attendeesDataType":"array",
"\u0000*\u0000__startType":"EventDateTime",
"\u0000*\u0000__startDataType":"",
"start":{
"date":"",
"timeZone":"Europe\/Moscow",
"dateTime":"2012-0408T12:00:00+04:00"
},
"location":"sdasdwqwqesaddsa",
"\u0000*\u0000__originalStartTimeType":"EventDateTime",
"\u0000*\u0000__originalStartTimeDataType":"",
"\u0000*\u0000__gadgetType":"EventGadget",
"\u0000*\u0000__gadgetDataType":"",
"description":"sadasdzxczxcasdsaweqqwasd",
"\u0000*\u0000__extendedPropertiesType":"EventExtendedProperties",
"\u0000*\u0000__extendedPropertiesDataType":"",
"\u0000*\u0000__endType":"EventDateTime",
"\u0000*\u0000__endDataType":"",
"end":{
"date":"",
"timeZone":"Europe\/Moscow",
"dateTime":"2012-04-08T19:00:00+04:00"
},
"\u0000*\u0000__remindersType":"EventReminders",
"\u0000*\u0000__remindersDataType":"",
"summary":"wqeqwesadasewqe"
}
注: イベントのオブジェクトを形成するために、コードを使用しました (ここの例と同じ developers.google.com/google-apps/calendar/v3/reference/events/insert セクションの例)
Result: API returns an error with code 400 (Bad Request)
API からの回答 (ヘッダー付き)
HTTP/1.1 400 Bad Request Content-Type: application/json; charset=UTF-8 Date: Fri, 06 Apr 2012 05:53:55 GMT Expires: Fri, 06 Apr 2012 05:53:55 GMT Cache-Control: private, max-age=0 X-Content-Type-Options: nosniff X-Frame-Options: SAMEORIGIN X-XSS-Protection: 1; mode=block Server: GSE Transfer-Encoding: chunked
{ "error": {
"errors": [
{ "domain": "global",
"reason": "badRequest",
"message": "Bad Request" }
],
"code": 400,
"message": "Bad Request"
}
}