All Questions
Tagged with outlook-restapi php
41 questions
2
votes
0
answers
338
views
Library that 'connects' with Google calendar, Outlook calendar and iCalendar
We have a system that schedules 'meetings' and we want to integrate a sync button that would pretty much take the meeting data(time and hour) and sync it with one of the three calendars (Google, ...
0
votes
1
answer
193
views
Error on CreateReply when sending email with Outlook API
I'm using deprecated now API to send reply to existing email like this:
POST https://outlook.office.com/api/beta/me/messages/{message_id}/createreply
And getting error like this:
The specified object ...
1
vote
1
answer
727
views
Microsoft Graph Rest API: how does "notification endpoint validation" works?
Reading the documentation I see that ... "The client must provide a response with the following characteristics within 10 seconds:"
A 200 (OK) status code.
The content type must be text/plain.
The ...
4
votes
0
answers
373
views
ErrorCode: 'PP_E_RPS_CERT_NOT_FOUND'. Message: ' Internal error: spRPSTicket->ProcessToken failed
I am trying to subscribe a user for push notifications. These are headers that contains a valid access token.
> POST https://outlook.office.com/api/v2.0/me/subscriptions
> Authorization: Bearer ...
1
vote
1
answer
3k
views
How to get outlook free busy schedule using microsoft-graph sdk php
I am using microsoft-graph api sdk here is the url: msgraph-sdk-php
I need to check if an user's appointment is available / busy in the outlook calendar.
I am trying using following code
$graph = ...
-1
votes
1
answer
929
views
How to send mail using Office365 REST API?
I am working with Office365 REST API. I am facing problem in sending email. I can't find any help in core php.
I am able to access mails and attachments but unable to send a mail. Here is what I have ...
1
vote
1
answer
3k
views
How to get Outlook calendar events to sync with PHP calendar
How do I get Outlook events calendar and sync with PHP calendar?
I have tried this:
var req = new XMLHttpRequest();
req.open("POST", "https://graph.microsoft.com/v1.0/me/events");
req....
0
votes
1
answer
730
views
Get Attachments REST API php
I am really confused in how to get a mail attachment from Outlook REST API and show it as a download link. The documentation is not precise and I have multiple forums but none could help me with it.
I ...
3
votes
2
answers
4k
views
Create New Event using Outlook Api in PHP (using POST method)
I am creating new event in php using POST method in Outlook API. I followed this link https://learn.microsoft.com/en-us/outlook/rest/php-tutorial to implement GET events method. Authorization code I ...
1
vote
1
answer
810
views
Updating an email's subject using Microsoft Graph in PHP
Here's my current code:
require_once '/pathtovendor/vendor/autoload.php';
use Microsoft\Graph\Graph;
use Microsoft\Graph\Model;
use Microsoft\Graph\Http\GraphRequest;
$access_token = "My valid ...
3
votes
0
answers
4k
views
How to get inbox mail from office 365 in php?
I have been attempting to get email's from office 365 using PHP. Here i need to get email's without user login.So i'm trying to get access token without user login.
This is the end point where i'm ...
0
votes
1
answer
394
views
Office365 push notification API error: verification failed because the response body
I am referring to o365 API documentation for adding push notification of calendar event. I am getting below error-
Post>>
array:4 [▼
"@odata.type" => "#Microsoft.OutlookServices.PushSubscription"...
0
votes
0
answers
335
views
How to get message id using Outlook API?
I am trying to retrieve email from Outlook API, but I want to display message id and other custom headers.
Here is the code:
$headers = array(
"User-Agent: php-tutorial/1.0",
"Authorization: ...
0
votes
1
answer
3k
views
Microsoft graph - can't add attachments to my message
So, today I comeback to you with another microsoft API problem,
I'm able to send mails, without any troubles with microsoft graph api, but the problem comes when I want to add attachments, I ...
-6
votes
1
answer
4k
views
Read email account from Outlook 365 Exchange using Rest Api
I am trying to access a mail account in the same way as you would by using LDAP and then accessing emails.
But this client is using Outlook 365 Exchange.
So do I need to use the Outlook Rest Api?
I ...