office365

Sharepoint Online (Office 365) - How to set Allow/Full Control permission for 'Add and Customize Pages'

﹥>﹥吖頭↗ 提交于 2019-12-10 11:34:44
问题 I could not find a way to enable Full Control for the feature Add and Customize Pages in Site Permissions screen. I am the administrator of the Site Collection and have created this site myself, but still I could not allow myself to allow this feature. When used Check Permissions screen, it is showing Deny status (as below): My Admin setting for SharePoint has Custom Script enabled (as below image): I am using SharePoint Online(Office365). 来源: https://stackoverflow.com/questions/51647702

Change value of a table in content control

╄→гoц情女王★ 提交于 2019-12-10 11:15:33
问题 I created a Word add-in and I insert a table in Word 2016 (version 16.0.7341.2029) using the Word API 1.3 like this: var value = [[3,4],[5,6]]; Word.run(function (ctx) { var table = ctx.document.body.insertTable(value.length, value[0].length, Word.InsertLocation.end, value); var myContentControl = table.insertContentControl(); myContentControl.tag = 'MyTable1'; myContentControl.title = 'This is a table'; return ctx.sync() .then(function () { console.log('Table created'); }).catch(function

Office365: Unauthorized response when accessing the management activity api

强颜欢笑 提交于 2019-12-10 09:51:48
问题 I am having trouble accessing the management activity API that has recently been rolled out. Though I believe I have correctly configured my app Yet when I make the following API call POST https://manage.office.com/api/v1.0/<tenantId>/activity/feed/subscriptions/start?contentType=Audit.SharePoint BODY { "webhook" : { "address": "<myServerURL>", "authId": "o365activityapinotification", "expiration": "" } } RESPONSE 401 { "Message": "Authorization has been denied for this request." } What am I

findRooms by name or email address

走远了吗. 提交于 2019-12-10 09:33:16
问题 Using the Microsoft Graph API, I would like to find rooms by either name or email address, such as: https://graph.microsoft.com/beta/me/findRooms?$filter=startswith(mail,'cal_') or https://graph.microsoft.com/beta/me/findRooms?$filter=startswith(name,'Building 1') Our rooms are not in RoomLists, and there are well over 100 rooms. How can I query for a specific, or subset of rooms? 回答1: The API is very limited in beta, and doesn't support OData query parameters like $filter . Let the team know

How to set a validation rule on a field in Access using SQL Query?

青春壹個敷衍的年華 提交于 2019-12-10 06:28:34
问题 I am using MS Access 2016 (Office 365) and I am currently facing an issue. Below is an example demonstrating this issue. Here I created a Table named as NodeFamilyLink , which consists of two fields: NodeID and FamilyID as shown below. Now the NodeID's are obtained from another table NodeData, which consists of 3 fields: NodeID, NodeName and ParentID. In this table, all the nodes are defined initially as shown in the below image. Now, what I want is while entering a number inside the NodeID

Microsoft Graph API mail office 365: Is any option create inbox message NOT as Draft?

社会主义新天地 提交于 2019-12-09 23:39:16
问题 I'm using office 365 mail Microsoft Graph API , trying to create new message following the Doc: https://developer.microsoft.com/en-us/graph/docs/api-reference/beta/api/user_post_messages POST https://graph.microsoft.com/beta/me/messages Content-type: application/json { "subject":"Did you see last night's game?", "importance":"Low", "body":{ "contentType":"HTML", "content":"They were <b>awesome</b>!" }, "toRecipients":[ { "emailAddress":{ "address":"AdeleV@contoso.onmicrosoft.com" } } ] } {

Set a custom header with Outlook/Office 365 REST

☆樱花仙子☆ 提交于 2019-12-09 18:32:17
问题 I know it is possible to get the headers from an email with this Outlook REST, but is there a way that we can set custom headers as well? I can't seem to find any documentation. 回答1: Try setting the SingleValueExtendedProperties on the message object. You can try using the property id for PS_INTERNET_HEADERS - {00020386-0000-0000-C000-000000000046}. Creating a new message with a custom header might look something like this: POST https://outlook.office.com/api/beta/me/messages Content-Type:

All-day events are not created correctly in Office 365

一曲冷凌霜 提交于 2019-12-09 13:25:04
问题 I am trying to export some events to a calendar in Office 365 through their REST API, https://msdn.microsoft.com/office/office365/APi/calendar-rest-operations#EventoperationsCreateevents. I set the IsAllDay to true, and set the start and end to midnight in UTC. The payload looks like this: { "Body": { "Content": "Agenda", "ContentType": "HTML" }, "End": "2015-02-01T00:00:00Z", "ShowAs": "Busy", "Start": "2015-01-30T00:00:00Z", "ChangeKey": "X2+akAeClEa0OJ8r6nC5QgABW30vaQ==", "Location": {

Authenticating Office 365 SharePoint Online OOTB services

假装没事ソ 提交于 2019-12-09 12:41:18
问题 I want to consume SharePoint data into a non .Net platform. I already use the SharePoint OOTB services like Lists.asmx, Webs.asmx and search.asmx for this purpose. I have successfully added support for forms based authentication using Authentication.asmx. Now, I want to provide support for Office 365 SharePoint online. For that purpose I have a demo SharePoint Online site that I am working on. Problem, I am facing is when I use Mode method of Authentication.asmx I get ‘Forms’ in response:

How to send SMTP email for office365 with python using tls/ssl

╄→гoц情女王★ 提交于 2019-12-09 04:21:30
问题 I am trying to send an email from my office365 corporate account using python. I am new to python. This code previously worked when using my hotmail account, however now that I have a need to send confidential information, I must use my corporate email. I have tried a couple things. Verified that my username and password is correct. Used both python2 and python3. Both give the same error: 535 5.7.3 Authentication unsuccessful I previously was using mailserver.starttls() when I got the above