How to query Hotmail for new email - api

I'm looking for the best way to check if new email has arrived in a Hotmail account without accessing the web interface or using a mail client.
I couldn't find any Hotmail mail API and looking at a Firefox add-on it seems that querying the site through a normal login process and then searching the HTML source is the way to go.
Any suggestions how to do this with security in mind?

Are you looking for API or plugin?
If API - it looks like they don't have any API for mail, they have API only for contacts and calendar.
But you can use SMTP or POP3 to fetch it.
EDIT
The link to the API can be found here.

Related

What is the x-thread:// URL scheme?

A website's private messaging notification was emailed to me with links to reply to the message and access the web's messaging thread which both start with x-thread:// URL scheme. Clicking them on Gmail android app did nothing, another mail app gave me "ERR_UNKNOWN_URL_SCHEME". A desktop client and online Gmail opens it with usual http://... I've tried searching Google but it yielded no relevant result. Google's autocomplete feature shows that various addresses of this sort had already been searched before. So what is this?

Automatic reply from Gmail to WebMail

I'm using Selenium WebDriver to test the web mail I've develop in one of my websites.
How can I set up a test script that when I send an email from the web mail to Gmail, Gmail will automatically reply to that email? I'm still fairly new using Java language.
I don't think setting up a selenium script to send a reply from gmail is the way to go. Since you are testing only your own application, you should refrain from creating scripts to automate replies from gmail as they further add a level of complexity and extra effort.
There are better ways to do what you want and I believe "Canned Responses" in gmail labs can be your savior.
Check out this link for more information on it :
Auto Responder to specific email addresses
You can also connect to the gmail address via POP3 in your java code and check for the email from your web mail and respond to that via java code itself. However, I think, the above solution (Canned Responses) would be the cleanest and the best approach.

Gmail Sidebar gadget development, getting started

I'm kind of new to dealing with Gmail API and I have a question regarding the development environment.
I want to create a simple application that fetches unread emails from a gmail user, sends it to a processing server of mine (RESTful web service) where I analyze the data and extract some information, then finally use the extracted information to add it to the user's Google calendar.
I was thinking of developing a sidebar gadget but I was curious about which IDE to use. Do I use the Google scripts API? Will it make my gadget portable? Which IDE to use?
I know about the Gmail API that uses oAuth access to IMAP & SMTP but how can I integrate it with the sidebar gadget? Where do I write the code? Which language?
First, you will want to read Google's Gmail gadget documentation to learn how to make them.
Basically, you can either use the Google Gadget Editor (GGE), which is a very simple IDE that runs in your browser, or you can use whatever editor you prefer for editing JavaScript and XML. You will also need a website where you can post your code. A google gadget is an XML+Javascript file that resides in some webserver and that follows the schema google dictates.
Google Apps Scripts are a different thing. They are scripts that run in a google spreadsheet and can access the user's google services (docs, gmail, and some other ones). But, they are not Gadgets. To write one, create a new spreadsheet then go to Tools->script editor.
IMAP and SMTP are another thing. They are protocols for talking to a mail server. There are imap and smtp libraries available for nearly all programming languages. But, that is not what you want if you want to implement a gadget.
One important thing to consider is that Apps Script is the only way to get full access to Gmail. You could easily automate all the processing to send the information to Calendar.

How do I download or read email attachments from Google Gmail Api with oauth?

Is there any method to download or read email attachments from Google Gmail using oauth?
If you are using .NET you may want to use Mail.dll IMAP component and oauth:
http://www.limilabs.com/blog/oauth-with-gmail
Please note that Mail.dll is a commercial product I created.

Is there an API for POP/IMAP in iOS?

In my app I need to access mail programmatically without using a MFMailComposeViewController. I have sent email with the help of SKPSMTPMessage from google code. Now I have to connect and check mail via POP3 or IMAP. Is there an API to download mail using POP3 or IMAP? I am not looking for a way to interface with Mail.app.
Thanks in advance.
You can try MailCore. MailCore supports SMTP and IMAP
I tried MailCore and reMail a year ago and it was too complex for me. I don't know if they improved now, but at that time I just gave up on them and written my own code. I uploaded it to sourceforge now, so whoever finds this discussion in google is welcome to try it.
https://sourceforge.net/projects/imap4ios/