Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
146 views
in Technique[技术] by (71.8m points)

python - Getting clean mail data from Microsft Graph API

I have been trying to get clean mail data from Microsoft Graph API into a Django template.

I have tried using

headers={'Prefer': 'outlook.body-content-type="text"'}

and

headers={'Prefer': 'outlook.body-content-type="html"'}

in my python GET request but both of them result in data with tags in them. I have tried using regex to clean my data but it is not as effective because regex removes some important texts.

Is there a simpler way of getting a cleaner mail data?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You need to use the body property of the message to get whether its HTML/Text. You can use preference headers to get it. When you specify either header, a successful response would include the corresponding Preference-Applied header,

  • For text format requests: Preference-Applied: outlook.body-content-type="text"
  • For HTML format requests: Preference-Applied: outlook.body-content-type="html"

If the body is HTML, by default, Outlook removes any potentially unsafe HTML (for example, JavaScript) embedded in the body property before returning the body content in a REST response.

  • To get the entire, original HTML content, include the "Prefer: outlook.allow-unsafe-html " HTTP request header
  • Apart from the above, you can $value of the message to get the MIME too.
  • In addition, you ended up retrieving HTML data then cleaned out the tags using Beautiful Soup.

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...