Share User's email ID by Apple - iphone

I am using 'In-App Purchase' in my iOS project. Now I want to fetch email Id of users that use IAP. Does Apple share email information with us?

Related

Get Facebook user email id for microsoft chatbot [duplicate]

I have a bot that I am building with the help of the Microsoft Bot Framework. I can see that session.message.user.id gives us the user id and session.message.user.name gives us the user name but if I am to connect it with Facebook, how do I get the user's email?
Thanks for your help in advance
The only way is to specifically ask the user for their email and then for example save it in user data in the bot.
Facebook (luckily) doesn't give out users' emails to bots. A normal Facebook app, on the other hand, might get it.
List of available fields: https://developers.facebook.com/docs/messenger-platform/identity/user-profile#fields

How to get Facebook friends email address using Facebook C# sdk 5.4.1.0 in Windows phone 7

I want to import Facebook contacts(Friends email address) to using an Windows Phone application app and save those contact to local phone.
I want use Facebook C# sdk for, please tell me how to accomplish this in Windows Phone.
Sorry, but Facebook doesn't allows export of Friend's email address. The same is mentioned in the note at Email Permission's documentation.
There is no way for apps to obtain email addresses for a user's friends.
If you still want to obtain those Email Ids of User's friend, you would need to send them all app request to try your application so that you may retrieve those per user basis.

Facebook: how to retrieve daily email maximum amount through facebook platform

i was trying to find out how many emails could an app send to a registered user through the facebook platform
I've seen the "notification.sendemail" docs and the "admin.getAllocation" docs, i even looked at the settings tabs of my facebook app developer page, but haven't been able to find the way to retrieve the total and daily email amount an app could send.
Could someone please help me out?
That API method is deprecated according to the docs; you should ask the user for their email address ( see https://developers.facebook.com/docs/authentication/permissions/ - email is the one you want ) and email them directly.

Send Reminder application invitation to facebook friends

Can facebook send reminder invitation for application request? In my web application ,member have facility to send invitation to his/her facebook friend for join my application. I am using facebook multi selector to send application invitation. I want to send a reminder invitation after a one week to facebook user which haven't join my application. Can anyone tell me how can i send a reminder to facebook user for join my application? Can facebook give any facility to send reminder via multiselector or if facebook provide and other facility.
Plz give any suggestion.
Thanks!
What about you go about it this way:
use the facebook API to connect the user and list his/her friend on your site with a checkbox beside each.
Send an invitation to the checked friends (via a dm maybe) and save the friend list in a db (you can call the table 'invites' and should include date, invitee and status). The invitation/registeration link should include a referer id to track the invitee.
Once the invitation is honored, GET the referer id and update the status to registered (you can denote that with 1).
Setup a daily cron to check for invites with not registered status that is 15 days. Resend invite to them.
Only problem is storing the user's friends has great privacy issues. If you must do it, make proper provisions in your privacy policy.

how to get email address of friends using facebook api in asp.net using c#?

please any example then give me...dont give me reference site name or any facebook sdk site..because i used sdk for ASp.net and in friendlist class it show me only email hashes instead of any email address,so there is any other way to get friend email full email address
The Facebook api has never and most likely will never expose friends email addresses. If you want to do this just for your own account, Facebook gives you the option to sync your friends & their email addresses with a Yahoo mail account, but again this is a feature that is not available through any kind of API.