Introduction to Office 365 Development

http://www.microsoftvirtualacademy.com/training-courses/introduction-to-office-365-development?m=10072&ct=31602

Developing on the Office 365 platform

http://msdn.microsoft.com/en-us/office/office365/howto/platform-development-overview

Set up your Office 365 development environment

http://msdn.microsoft.com/en-us/office/office365/howto/setup-development-environment#bk_Office365Account

Start with a free 30-day trial account

https://portal.microsoftonline.com/Signup/MainSignUp.aspx?OfferId=6881A1CB-F4EB-4db3-9F18-388898DAF510&DL=DEVELOPERPACK

log into the developer site

https://login.microsoftonline.com/

OAuth2 in action with the release of Office 365 Calendar, Contacts and Mail

http://blogs.msdn.com/b/exchangedev/archive/2014/10/28/oauth2-in-action-with-the-release-of-office-365-calendar-contacts-and-mail.aspx

Office 365 REST APIs reference

http://msdn.microsoft.com/office/office365/APi/api-catalog

Calendar REST operations

http://msdn.microsoft.com/office/office365/api/calendar-rest-operations

Office Developer Tools for Visual Studio 2013

https://visualstudiogallery.msdn.microsoft.com/a15b85e6-69a7-4fdf-adda-a38066bb5155

Office Developer Tools for Visual Studio 2012

office365 cn
https://login.partner.microsoftonline.cn/    login url
https://partner.outlook.cn/ews/Exchange.asmx   ews url

some of rest apis

https://partner.outlook.cn/api/v1.0/me

https://partner.outlook.cn/api/v1.0/me/calendars
https://partner.outlook.cn/api/v1.0/me/calendarview?startdatetime=2014-10-01t01:00:00z&enddatetime=2015-10-31t23:00:00z

office365 international

https://portal.office.com

windows azure international
https://manage.windowsazure.com/

nodejs read calendar via rest api

http://msdn.microsoft.com/office/office365/api/calendar-rest-operations#EventoperationsGetevents

https://code.msdn.microsoft.com/Office/Office-365-APIs-Get-d75d1c8a

var req=require('request')
var user='admin@abc.partner.onmschina.cn'
var pwd='123456'
var auth = "Basic " + new Buffer(user + ":" + pwd).toString("base64");
var url='https://partner.outlook.cn/api/v1.0/me/calendarview?startdatetime=2014-10-01t01:00:00z&enddatetime=2015-10-31t23:00:00z'
req({url:url,headers:{'Authorization':auth}},function(err,response,body){
var obj= JSON.parse(body);
//console.log(obj);
console.log(obj.value[0].Subject);
console.log(obj.value[0].BodyPreview);
});

office365 development的更多相关文章

  1. BEGINNING SHAREPOINT® 2013 DEVELOPMENT 第2章节--SharePoint 2013 App 模型概览 SharePoint 2013 App 模型

    BEGINNING SHAREPOINT® 2013 DEVELOPMENT 第2章节--SharePoint 2013 App 模型概览 SharePoint 2013 App 模型 你能够通过两个 ...

  2. BEGINNING SHAREPOINT® 2013 DEVELOPMENT 第1章节--SharePoint 2013 介绍 SharePoint 2013 平台

    BEGINNING SHAREPOINT® 2013 DEVELOPMENT 第1章节--SharePoint 2013 介绍 SharePoint 2013 平台         SharePoin ...

  3. 【内推】2020微软苏州Office365众多核心团队热招150+研发精英!欢迎推荐

    2020微软苏州Office365众多核心团队热招150+研发精英!欢迎推荐 大家好,目前微软Office365核心团队在美丽宜居的苏州有150多的社招职位虚位以待,欢迎大家自荐,推荐,转发!除以下列 ...

  4. Beginners Guide To Web Development

    Web Development Front End Development Back End Development

  5. 微软要如何击败Salesforce?Office365、Azure、Dynamics365 全面布局AI | 双语

    微软在上月宣布组建自己的 AI 研究小组.该小组汇集了超过 5000 名计算机科学家和工程师,加上微软内部研究部门,将共同挖掘 AI 技术. 与此同时,亚马逊,Facebook,Google,IBM ...

  6. iOS---The maximum number of apps for free development profiles has been reached.

    真机调试免费App ID出现的问题The maximum number of apps for free development profiles has been reached.免费应用程序调试最 ...

  7. Connect to Office365

    How to connect to office365 1. Connect to Exchange Online $UserCredential = Get-Credential $Session ...

  8. [转] Agile Software Development 敏捷软件开发

    原文作者:kkun 原文地址:http://www.cnblogs.com/kkun/archive/2011/07/06/agile_software_development.html 敏捷是什么 ...

  9. 《3D Math Primer for Graphics and Game Development》读书笔记2

    <3D Math Primer for Graphics and Game Development>读书笔记2 上一篇得到了"矩阵等价于变换后的基向量"这一结论. 本篇 ...

随机推荐

  1. About TI CC3000 Wifi

    http://forums.adafruit.com/viewtopic.php?f=22&t=44384http://learn.adafruit.com/adafruit-cc3000-w ...

  2. flv视频播放器代码

    <div class="txt1"> <script type="text/javascript"> var swf_width=307 ...

  3. MongoDB - The mongo Shell, Configure the mongo Shell

    Customize the Prompt You may modify the content of the prompt by setting the variable prompt in the  ...

  4. C#微信开发回复信息

    using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Web;usi ...

  5. JSP之AJAX

    伴随着Web开发越来越广泛,越来越多网站开始应用AJAX.事实上,Ajax在Web应用带来的变化,我们已经在不知不觉中体验过了.例如,百度搜索提示,会员注册…… 在传统Web应用模式中,页面中用户的每 ...

  6. mysql插入表中的中文显示为乱码或问号的解决方法

    版权声明:本文为博主原创文章,未经博主允许不得转载. 今天在做ssh的博客项目时发现mysql数据库中的中文显示为问号,网上查阅了很多资料,都不是很全,所以我总结一下,供大家参考和自己复习. 1.我的 ...

  7. 20150221—LINQ to SQL 查询数据

    LINQ to SQL 可以快捷的查询基于SQL的数据,直接在VS中包括基本的Object/relation映射器,O/R映射器可以快速的将基于SQL的数据源映射为CLR对象,之后就可以使用LINQ查 ...

  8. OC3-xml文件解析

    <?xml version="1.0"?> <xml_api_reply version="1"> <cities> < ...

  9. 转: 理解Python的With语句

    Python’s with statement provides a very convenient way of dealing with the situation where you have ...

  10. arcgis js api 本地化配置

    配置arcgis library 根目录的init.js的 "baseUrl:",使其指向正确的地址