답변

0

구글 캘린더 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();