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);
});
office365 development的更多相关文章
- BEGINNING SHAREPOINT® 2013 DEVELOPMENT 第2章节--SharePoint 2013 App 模型概览 SharePoint 2013 App 模型
BEGINNING SHAREPOINT® 2013 DEVELOPMENT 第2章节--SharePoint 2013 App 模型概览 SharePoint 2013 App 模型 你能够通过两个 ...
- BEGINNING SHAREPOINT® 2013 DEVELOPMENT 第1章节--SharePoint 2013 介绍 SharePoint 2013 平台
BEGINNING SHAREPOINT® 2013 DEVELOPMENT 第1章节--SharePoint 2013 介绍 SharePoint 2013 平台 SharePoin ...
- 【内推】2020微软苏州Office365众多核心团队热招150+研发精英!欢迎推荐
2020微软苏州Office365众多核心团队热招150+研发精英!欢迎推荐 大家好,目前微软Office365核心团队在美丽宜居的苏州有150多的社招职位虚位以待,欢迎大家自荐,推荐,转发!除以下列 ...
- Beginners Guide To Web Development
Web Development Front End Development Back End Development
- 微软要如何击败Salesforce?Office365、Azure、Dynamics365 全面布局AI | 双语
微软在上月宣布组建自己的 AI 研究小组.该小组汇集了超过 5000 名计算机科学家和工程师,加上微软内部研究部门,将共同挖掘 AI 技术. 与此同时,亚马逊,Facebook,Google,IBM ...
- 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.免费应用程序调试最 ...
- Connect to Office365
How to connect to office365 1. Connect to Exchange Online $UserCredential = Get-Credential $Session ...
- [转] Agile Software Development 敏捷软件开发
原文作者:kkun 原文地址:http://www.cnblogs.com/kkun/archive/2011/07/06/agile_software_development.html 敏捷是什么 ...
- 《3D Math Primer for Graphics and Game Development》读书笔记2
<3D Math Primer for Graphics and Game Development>读书笔记2 上一篇得到了"矩阵等价于变换后的基向量"这一结论. 本篇 ...
随机推荐
- Laravel-Administrator enum使用数字key
参考连接:Enum filter with numeric values 修改Fields\Enum::build()方法 $options['options'][] = array( 'id' =& ...
- Python之Python Imaging Library
document:http://effbot.org/imagingbook/pil-index.htm http://pillow.readthedocs.io/en/3.1.x/index.htm ...
- 前台传到servlet的乱码问题要怎么处理
- 【ANT】Ant常用的内置task
ant 例如: <target name="callProjectB"> <echo message="In projectA calling proj ...
- CSS之text-stroke
啧啧啧( ̄︶ ̄),国庆人太多,所以假期还没结束就提前几天回来了.今天也是挤火车赶回来的,被夹在门里好尴尬啊~~ 回家的这几天在外婆家招待过的好爽啊,又是鱼又是肉,馋的我都不想走了. 然而自己在家只能“ ...
- Warning: Permanently added '...' (RSA) to the list of known hosts --Windows下git bash 警告处理
原链接地址 StackOverflow 处理方法: 创建文件~/.ssh/config, 此处对应windows当前用户目录下的.ssh文件夹 增加如下语句 UserKnownHostsFile ~/ ...
- iOS Core Animation Advanced Techniques
Book Descripter Core Animation is the technology underlying Apple's iOS user interface. By unleashin ...
- JS函数式编程【译】2.3 函数式程序员的工具集
- HDU1042 N! 大数的阶乘
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1042 由于数字特别大, 所以用数组来模拟. 经测试, 数组大小开50000 可过. 附AC代码, 欢迎 ...
- SpringMvc入门三----控制器
在传统的Spring MVC开发方法中,必须在Bean配置文件中为每个控制器类配置实例和请求映射和让每个控制器类去实现或者扩展特定于框架的接口或者基类,不够灵活. 如果Spring MVC可以自动侦测 ...