Invitation via hotmail contacts with rails

I need to send an invitation to hotmail. I am trying to use this stone for this. This works correctly for gmail and yahoo, but for hotmail it is not:

Their API returns a Contact object that does not contain an email address field!

Then I try to use this stone, but it is too old and now does not work. The official Microsoft documentation leaves much to be desired, and I cannot give some examples for this.

Is there any solution for this? Maybe another stone, api or something else.

I am using ruby-1.9.2 and rails 3.1.0 if this is important.

PS Sorry for my poor English, this is not my native language. Please correct my post if something is wrong.

+3
source share
1 answer

Hotmail uses a live connection. More information on live connectivity can be found here:

http://msdn.microsoft.com/en-us/live

It uses REST Api with oauth message.

More information about the rest of the api can be found here:

http://msdn.microsoft.com/en-us/library/ff748607.aspx

Edit: This is a review / implementation guide for http://msdn.microsoft.com/en-us/library/ff752216.aspx

0
source

All Articles