내 웹 사이트의 일반/일반 방문자없이 내 웹 페이지에서 정해진 양식으로 모든 공개 캘린더의 모든 이벤트를 나열하려고합니다. 어떤 식 으로든 로그인하거나 인증하십시오. 나는 v1과 젠드 프레임 워크를 사용하여 2010 년 12 월부터 이것을 해왔다. 2014 년 11 월 17 일에 Google은 v1 및 v2를 사용 중지했으며 현재 웹 페이지가 손상되었습니다. Google 캘린더 API v3 서비스를 사용하여 연결할 캘린더를 정의하는 방법
- 는 구글 개발자 콘솔
- 에서 프로젝트를 만든 : 여기
내가 지금까지 한 일이다 어제 - 1.1.1 버전)
- JSON PHP 확장 프로그램이 내 서버에 설치되었습니다.
- OAuth 2.0 자격증 명 0 개 다음
- 는
- 내 캘린더 (그들은 2010 년 12 월부터 있었다) 여기
require_once 'autoload.php'; // 2014-11-24 part of /usr/local/lib/php/google-api-php-client
$client = new Google_Client();
$client->setApplicationName("One_of_my_Calendars");
$client->setDeveloperKey("MY-PUBLIC-API-ACCESS-KEY"); // 2014-11-24 my Public API Access Key
$service = new Google_Service_Calendar($client);
$results = $service->events->listEvents('primary');
가 있습니다 :
Fatal error: Uncaught exception 'Google_Service_Exception' with message 'Error calling GET https://www.googleapis.com/calendar/v3/calendars/primary/events?key=MY-PUBLIC-API-ACCESS-KEY: (403) Access Not Configured. The API is not enabled for your project, or there is a per-IP or per-Referer restriction configured on your API key and the request does not match these restrictions. Please use the Google Developers Console to update your configuration.' in /usr/local/lib/php/google-api-php-client/src/Google/Http/REST.php:76 Stack trace: #0 /usr/local/lib/php/google-api-php-client/src/Google/Http/REST.php(41): Google_Http_REST::decodeHttpResponse(Object(Google_Http_Request)) #1 /usr/local/lib/php/google-api-php-client/src/Google/Client.php(548): Google_Http_REST::execute(Object(Google_Client), Object(Google_Http_Request)) #2 /usr/local/lib/php/google-api-php-client/src/Google/Service/Resource.php(190): Google_Client->execute(Object(Google_Http_Request)) #3 /usr/local/lib/php/google-api-php-client/src/Google/Servi in /usr/local/lib/php/google-api-php-client/src/Google/Http/REST.php on line 76
스크린 샷 : 당신이 필요
문제 1 번 :
https://drive.google.com/file/d/0Bytqhoir_Tt5ODRaNzRvS2FZRWs/view?usp=sharing https://drive.google.com/file/d/0Bytqhoir_Tt5MzlqLWF2Q3M2bUk/view?usp=sharing
oauth2 부분이 누락되었습니다. 달력 서비스를 만들기 전에 인증을 받아야합니다. – DaImTo
Ok @DalmTo하지만 공개 API 액세스 키를 통해이 작업을 수행 할 수 있다고 생각했습니다. (문서는 공개 액세스 키 또는 OAuth 2.0과 같은 이벤트 목록을 가져 오는 두 가지 방법을 암시하는 것으로 보입니다. 내 웹 페이지/웹 서비스는 어디에서나 일반 또는 일반 방문자에게 이벤트를 나열합니다. 사람들이 어떤 방식 으로든 로그인해야하는 것을 원합니다. –
Oauth2에서는 다른 사용자의 일정에 액세스 할 수 있습니다. 서비스 계정을 사용하면 하나의 중앙 달력을 가지고 해당 정보를 다른 사람들에게 표시 할 수 있습니다. 너 정확히 뭘 하려구? – DaImTo