0

Outlook Office 365 API のサブ フォルダーからメッセージを返す方法を見つけようとしています。すべてがこれを指しているようです。

HttpResponseMessage response = await client.GetAsync("https://outlook.office365.com/api/v1.0/me/folders/inbox/childfolders/Odata/messages");

しかし、私はいつも悪いリクエストを返します。

これが私のリソースです。

MSDN

ありがとうスコット

4

2 に答える 2

0
public void EnsureConnectionValid()
    {
        if (AuthenticationContext == null)
        {
            AuthenticationContext = new AuthenticationContext(authority);
            AuthenticationResult = AuthenticationContext.AcquireToken(resource, clientId, new Uri(redirectUri), PromptBehavior.Auto);
        }
    }

    public async Task<string> GetFolderId(string Path)
    {
        EnsureConnectionValid();
        var client = new HttpClient();
        client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", AuthenticationResult.AccessToken);
        var restCommand = "https://outlook.office365.com/api/v1.0/me/folders/Inbox/childfolders?$filter=DisplayName eq " + "'" + Path + "'";
        HttpResponseMessage response = await client.GetAsync(restCommand);
        response.EnsureSuccessStatusCode();
        string jsonMessage;
        using (var responseStream = await response.Content.ReadAsStreamAsync())
        {
            jsonMessage = new StreamReader(responseStream).ReadToEnd();
        }
        var folderObject = JObject.Parse(jsonMessage)["value"].ToObject<FoldersList[]>();
        return folderObject.Select(r => r.Id).SingleOrDefault();
    }
于 2015-04-20T15:33:59.283 に答える
0

URL の構文は次のとおりです。

https://outlook.office365.com/api/v1.0/me/folders/<FOLDER ID>/Messages

そのため、照会するフォルダーの ID を取得する必要があります。たとえば、それが受信トレイのサブフォルダーである場合は、次のように GET を実行できます。

https://outlook.office365.com/api/v1.0/me/folders/inbox/childfolders

そして、あなたは次のようなものを返すでしょう:

{
  "@odata.context": "https://outlook.office365.com/api/v1.0/$metadata#Me/Folders('inbox')/ChildFolders",
  "value": [
    {
      "@odata.id": "https://outlook.office365.com/api/v1.0/Users('JasonJ@contoso.com')/Folders('AAMkADNhMjcxM2U5LWY2MmItNDRjYy05YzgwLWQwY2FmMTU1MjViOAAuAAAAAAC_IsPnAGUWR4fYhDeYtiNFAQCDgDrpyW-uTL4a3VuSIF6OAAAeY0W3AAA=')",
      "Id": "AAMkADNhMjcxM2U5LWY2MmItNDRjYy05YzgwLWQwY2FmMTU1MjViOAAuAAAAAAC_IsPnAGUWR4fYhDeYtiNFAQCDgDrpyW-uTL4a3VuSIF6OAAAeY0W3AAA=",
      "ParentFolderId": "AAMkADNhMjcxM2U5LWY2MmItNDRjYy05YzgwLWQwY2FmMTU1MjViOAAuAAAAAAC_IsPnAGUWR4fYhDeYtiNFAQCDgDrpyW-uTL4a3VuSIF6OAAAAAAEMAAA=",
      "DisplayName": "New Subfolder",
      "ChildFolderCount": 0
    }
  ]
}

次に、Idフィールドの値を取得して URL に挿入します。

https://outlook.office365.com/api/v1.0/me/folders/AAMkADNhMjcxM2U5LWY2MmItNDRjYy05YzgwLWQwY2FmMTU1MjViOAAuAAAAAAC_IsPnAGUWR4fYhDeYtiNFAQCDgDrpyW-uTL4a3VuSIF6OAAAeY0W3AAA=/Messages
于 2015-04-21T13:08:38.987 に答える