How to get list of User Login information from MS-Graph API - onedrive

I need to call ms-graph to get a list of users logins in the last 24 hours and the ip address of the client from which they logged in from. Is that possible?
Thanks
Al

Not today.
Can you please open a request on user voice?: https://officespdev.uservoice.com/

Related

how to get the names of non-contact member in a skype group conversation?

I want to know how to get the names of non-friends in multi-person conversation in web.skype.com.
For example: in a multi-person conversation, there is a user A who is not my contact, but the web.skype web page can display the name of user A. Through Chrome's network tools, I am only getting a conversation history message record request I have seen the name of user A, but if user A has not sent a message, all the data obtained by request does not contain the name of user A.
If anyone knows and tells me how to get it, I would appreciate it
Skype dont provide an API who can do that, you need to implement a bot to give you this information.

Fetching mails to openerp inbox for every user in openerp7

I know that there is a way to define incoming mail gateway. If we configure it and click on fetch now we will get all mails in the Administrators inbox. Is there a way to configure this for every user and so when every user logs in he/she will get their mails in their openerp inbox itself. Kindly help me to do that with openerp7. Thanks for your time.
You need to create incoming mail servers for every users via Settings->Techincal->Incoming Mail Server providing Username and Password of every users in the Login Information table!

Ebay API: Get All Transactions By Seller

I am trying to use the Ebay API to get completed transactions for a seller(s) that is using a different account from my developer account. I've looked into GetSellerTransactions and GetOrders. Unfortunately, I am not sure if it's possible to specify a User ID different from mine. Could you point me to working example of how to do this?
To get transactions for a user you should be first authorized by that user.
You will need a developer account for that.
This links will guide you
http://developer.ebay.com/DevZone/XML/docs/WebHelp/wwhelp/wwhimpl/common/html/wwhelp.htm?context=eBay_XML_API&file=GettingTokens-Getting_Tokens_for_Applications_with_Multiple_Users.html
http://developer.ebay.com/DevZone/XML/docs/WebHelp/wwhelp/wwhimpl/common/html/wwhelp.htm?context=eBay_XML_API&file=DevAndTestApplications-Testing_Applications.html
Once you get the user token for a user you need to send them along with your developer credentials to make the getOrders API call for that particular user.

Error when trying to log into ESPN Masher API

I'm a long time user of Mashery, but when I try to sign into the ESPN API I get the following message:
Login Failed
You must click on the link in your user confirmation email before you can login.
This seems easily solvable - however, I've never received a confirmation email.
Any help from the ESPN API staff would be greatly appreciated.
//MD
I took a look at this, but it's difficult to see which user account is yours without more information. I do see one account in a "waiting" status, so I'll presume that is yours. I do see another account using a gmail address that has the same first and last name as the one that is waiting to be confirmed. The email address of the account waiting for confirmation is a .co account.
I don't see an option to resend the confirmation email, perhaps requesting a password reset on the login screen will help. I'll see what else I can do, but try the reset first.

Single login (facebook, twitter, linkedin) services: how to combine accounts

The problem I see with single login services, is that if you login once using Facebook, once using Twitter, and once using LinkedIn - you have three different accounts. Everything would be fine, if Twitter was giving an email address. So, how do you fix it?
I have the same problem and I was hoping the clever folks on SO would have an elegant solution. All I can think of doing is :
User logs in with LinkedIn
Check the user table to see if they have an account using their LinkedIn id
If not, ask them for their email address before logging them in
When we have the email address, check to see if they already have an account using their email address
If they do, add their LinkedIn ID to this record and log them in
If they don't, create a new record and log them in
This means that each user record needs fields for every possible account, or more correctly use a link table connected to their local user id with a record for each account they log in with.
It also defeats the benefit of a simple OpenId login because the user has to register their email the first time they login with a new OpenId account.
Like I said, elegant it ain't, but it is the best I can think of.