Questions tagged [office365api]

The Office 365 API lets developers build apps that use data stored within Office365. These can be stand-alone apps or plugins within the Office365 web apps.

Whether you want to incorporate the richness of Office 365 data into your app, or create a custom experience within Office 365 itself, or use custom reports to keep your Office 365 Enterprise environment running smoothly, you can use the following developer features to achieve your goals.

  • Integrate Office 365 data into your own apps
  • Create custom experiences within Office 365
  • Analyze and manage the health of your Office 365 Enterprise environment

You can also create custom experiences within the Office clients, such as Word, Excel, and PowerPoint, and within SharePoint 2013 and SharePoint Online.

Useful Links:

  1. Overview
  2. API reference
1287 questions
0
votes
3 answers

Office 365 REST API with Basic Authorization

I am trying to get both personal calendar and shared calendar in an office 365 account using RESTapi. Since currently Oauth2 doesn't support accessing shared calendar, I'm testing my code with basic authorization. I have three calendars in my…
0
votes
1 answer

How to read calendars which are shared by others in Office 365 REST API

https://outlook.office.com/api/v1.0/Users/me/calendars I used this one to get all my calendars. I've got all calendars except calendars which are shared by others with me. I just want to read these calendars. My question is: Does Office 365 Rest Api…
Nguyen Tho
  • 89
  • 7
0
votes
1 answer

Retrieve O365 SharePoint lists from Cordova hybrid mobile app

I have scoured the web looking for a way to retrieve SharePoint Online lists inside a Cordova hybrid app in Visual Studio 2015. I've found many samples for reading/writing to my Calendar (Woodgrove Demo) and retrieving my contacts (Cordova Contact…
0
votes
0 answers

Getting 404 resource found issue while calling office 365 videos rest api (GET) in on premise sitecollection

Created on one content editor webpart and calling _api/VideoService/Channels('channelId')/Videos using jquery ajax call, getting 404 error. Below is my ajax code $.ajax({ type: 'GET', url: url, async: false, …
Vijay
  • 133
  • 1
  • 10
0
votes
1 answer

How Create Tasks for other users via O365 API/Exchange Managed APi

The scenario I am developing a Sharepoint provider hosted app. The Sharepoint app web is only used as a repository for storing items and The web application use O365 multitenant app to authenticate users by using ADAL Tokens. The requirement I have…
0
votes
1 answer

Using ADAL JS Lib in JS App

I need to use the ADAL JS lib for my office 365 add-in. I went through the github page here. I saw the example is given in the form of an Angular JS App. Is there any example which can be used in plain JS app. The office add-in was created from Napa…
Spartan
  • 191
  • 1
  • 9
0
votes
1 answer

Office365 API returns 404 on GetCalendars on some accounts

I'm using the Office365 as described in the documenation website to get a user's calendars from Office365 account, but getting a 404 error instead: "GET /api/v1.0/Me/Calendars HTTP/1.1" 404 The user has authorized access and I've managed to receive…
yulkes
  • 210
  • 3
  • 11
0
votes
1 answer

How to get ContentBytes property of an email attachment using office 365 rest api? I am using node.js below is the code which i am using

outlookClient.me.folders.getFolder('Inbox').messages.getMessages().filter('IsRead eq false and HasAttachments eq true').fetchAll(10).then(function (result) { result.forEach(function (message) { …
0
votes
1 answer

How to get device details of office 365 users

We are implementing an integration with office 365 from our product. For that, we wanted to get the device details of the users in an office 365. For instance, if a user is using office in 5 of his workstations, we wanted to get detail about those…
Rajeesh ck
  • 21
  • 3
0
votes
0 answers

Office 365 API - Authentication Error

I have an Asp.Net Mvc app to which I have added Office 365 service. Azure Active Directory has been created and Username/Applications have been populated properly in the Azure portal. I am able to login from the app and get the Authorization code.…
0
votes
1 answer

Unable to read beyond the end of the stream. Azure Deployment Issue

I want to integrate office 365 API's and i'm following this sample git code enter link description here i follow all the steps and everything is working fine in localhost but when i deploy the same asp application on git it gives me following error…
Ahmad
  • 413
  • 5
  • 12
0
votes
2 answers

Office 365 Starter Project - Make sure the app is configured with the correct service permissions

I am using the following project: https://github.com/OfficeDev/O365-ASPNETMVC-Start I set the configurations as requested in the documentation but I am receiving an error after sign in. Cause Action AdalException This exception is thrown when…
User05
  • 121
  • 4
  • 10
0
votes
1 answer

Azure AD OAuth 2.0 Code Grant Authorization with Java Jersey

My REST request looks like this after I read through this guide: How to Authorize to Microsoft Azure-AD Client cli = ClientBuilder.newClient(); WebTarget webTar =…
Maevy
  • 261
  • 4
  • 24
0
votes
2 answers

Office 365 unified API (preview) requests 401 error

I'm trying to make some intersting things with Office 365 unified API (preview) and stuck on the moment with authorization. I made app with all permissions that I need I'm trying to log in users with…
KardanovIR
  • 482
  • 1
  • 4
  • 17
0
votes
2 answers

Personal OneDrive, OneDrive for Businesses and LiveSDK

I have developed a Windows Phone 8 app using the LiveSDK API to access files in OneDrive. It works fine using the personal OneDrive. Now my customer have installed OneDrive for Businesses and cannot log in. Do I have to use another API to reach…
rwestly
  • 1
  • 2