1
appcelerator를 사용하여 Google 캘린더 API 서비스 구현을 찾고 있습니다. 난, 구글의 API를 호출 하나 도와주세요 me.Advance 덕분에appcelerator를 사용하여 Google 캘린더 API 서비스에 전화하는 방법
appcelerator를 사용하여 Google 캘린더 API 서비스 구현을 찾고 있습니다. 난, 구글의 API를 호출 하나 도와주세요 me.Advance 덕분에appcelerator를 사용하여 Google 캘린더 API 서비스에 전화하는 방법
구글 캘린더 API https://developers.google.com/google-apps/calendar/v3/reference/
예를 표준 네트워크 과정 http://docs.appcelerator.com/platform/latest/#!/api/Titanium.Network.HTTPClient를 사용하여 네트워크 호출을 선언하고 사용하는 아이디어를받지 시작하는 방법 사용자 캘린더 가져 오기
var url = " https://www.googleapis.com/calendar/v3/users/me/calendarList";
var client = Ti.Network.createHTTPClient({
// function called when the response data is available
onload : function(e) {
Ti.API.info("users calendars: " + JSON.stringify(this.responseText));
alert('success');
},
// function called when an error occurs, including a timeout
onerror : function(e) {
Ti.API.debug(e.error);
alert('error');
},
timeout : 5000 // in milliseconds
});
// Prepare the connection.
client.open("GET", url);
// Send the request.
client.send();