Check this link
Showing posts with label calender. Show all posts
Showing posts with label calender. Show all posts
Wednesday, September 11, 2013
Wednesday, August 21, 2013
Google Calendar API authorization using OAuth 2.0 for native applications
Example code here
Authorizing Requests to the Google Calendar API
Labels:
appengine
,
calender
,
google
,
google apps
Wednesday, May 30, 2012
Google Apps Access domain users calendars
<script language="javascript">
$(document).ready(function() { $('#dataProcessingIFrame').attr("src","http://www.google.com/calendar/embed?src=user%40domain.com&ctz=Asia/Dubai");
});
function changeurl(sel) {
var value = sel.options[sel.selectedIndex].value;
var url = "http://www.google.com/calendar/embed?src=user%40domain.com&ctz=Asia/Dubai";
url = url.replace("user", value);
$('#dataProcessingIFrame').attr("src",url);
}
function openurl(sel) {
var value = sel.options[sel.selectedIndex].value;
if(value != "0") {
var url = "http://www.google.com/calendar/embed?src="+value+"%40domain.com&ctz=Asia/Dubai";
window.open(url,'_blank','width=600,height=600');
}
}
</script>
<select name="users" onchange="javascript: openurl(this);"> <option selected="" value="0">Select User</option> <option value="user">user@domain.com</option></select>
Labels:
calender
,
google apps
,
javascript
,
jquery
Subscribe to:
Posts
(
Atom
)