office365 development

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);
    });

 

转载于:https://www.cnblogs.com/zyip/p/4205840.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值