This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
Facebook API - How to get user’s address, phone #?
Is it still possible to get the user Phone or Mobile number using Graph Api? I already read a lot of forum regarding this issue and the other said the facebook removed the permission to get the mobile or phone number.
So I just asking if there is someone can tell if there is still way to get it?
any thought will be highly appreciated.
A pretty scary feature. It seems that Facebook has retracted these features of the API due to privacy concerns.
For more details read this.
Actually i have the same issue when i am trying with facebook.I read lots of forums but no use.I came to know it is not possible to get the "Phone no".But instead of that i took "mail id" and "user name" and i managed with that..
Related
This question already has answers here:
Is there a unique Android device ID?
(54 answers)
Closed 9 years ago.
I was working on an app (server-android client) that allow user to sign in from multiple android devices. When user logged in on a device, that device will be registered on server side, but I don't know how to avoid duplicate, so I was wondering that are there any chances to uniquely identify an android device? I think Google Play and Facebook can do that.
There are several options available, but there is no 100% guarantee that they will always work. See the android developer blog post: http://android-developers.blogspot.in/2011/03/identifying-app-installations.html
Best method mentioned is Settings.Secure.ANDROID_ID
You can check the IMEI or MAC address of the device.
for IMEI
TelephonyManager.getDeviceId will work
for MAC
WifiInfo.getMacAddress will work
This question already has an answer here:
Closed 10 years ago.
Possible Duplicate:
Develop application like Google play?
I want to develop application like "Google play" to my organization purpose. Please give me some advice on this ? How do i start this?
I am looking for we have the server which has contains android application. By using this application it has to list out all the application available from our server and also listed the application which is installed from our server and show the updates for installed application if its available in our server.
Maybe you could use Google play itself for that purpose. Take a look here:
http://googleenterprise.blogspot.ca/2012/12/a-new-way-to-distribute-your-internal.html
Hope that helps.
Installing app is quite easy - just send intent to "open" .apk file.
Listing installed application also possible - PackageManager
Checking for updates - GCM or AlarmManager frequently checking for updates.
On the other hand, maybe all you need is private channel introduced last time:
http://support.google.com/a/bin/answer.py?hl=en&answer=2494992
Could you be a bit more specific? You need here both a server and client side component, maybe use some rest web-services to feed your client. As a quick idea you can just put out a gridview with some custom items which while scrolling would async call your web-service to display your apps.
Again, I'm not sure if this is what you're looking for, try to be a bit more specific.
This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
How to find Gmail account associated with Android Market?
In Android, is there an easy way in code to detect if the user has linked their phone to Google Market using a gmail address?
It seems to me like the right thing to ask at this point is, "What are you really trying to do?"
The most obvious use case I can think of is to verify that the user is legitimately using your app, in which case you might find the right answer in Application Licensing: http://developer.android.com/guide/google/play/licensing/index.html
The next most obvious use case I can think of is you want to help the user install something, in which case maybe your answer is in Linking to your Application: http://developer.android.com/distribute/googleplay/promote/linking.html
For other cases, the answer may begin with Account Manager. Try here: http://developer.android.com/training/id-auth/identify.html
This question already has answers here:
Android like permissions in iOS
(3 answers)
Closed 9 years ago.
I am not sure how to search for this so even a bunch of keywords would be enough or +1 if someone can point me to the relevant documentation.
Android has approx. 122 permissions described here. What is the equivalent in iOS? Do developers declare permissions or can they access everything? If everything, where can I find what this "everything" entails?
Although there are key differences in the way iOS and Android access the system, what Apple have done is to let you use some system resources (such as contacts or photos for example) and also register your app via some keys in a property list for using features such as background execution (for example a voip application that would like to listen for incoming calls). You can find all these options (keys) here.
There is no manifest-like permission concept in iOS. You can access every public API, as long as it is not against the developer agreement, and if you do something wrong, your application will be rejected by Apple.
There is no concept of "permissions" in iOS, there are certain things you are allowed to do and certain things you are not. You need not ask the user for access to these permissions.
I don't know of a specific list of things you are allowed to do, but the Review Guidelines should give you a good idea.
There is no concept of permissions for iOS (iOS 5; may happen in iOS 6 but do not count on it). You can only access official API as approved by Apple. Use of any unofficial API is not permitted and as such will in most cases leads to your app being rejected for distribution in the AppStore.
The closest you will find to permissions in notifications you see when using Location. See more #: http://developer.apple.com/library/ios/#documentation/UserExperience/Conceptual/MobileHIG/TechnologyUsage/TechnologyUsage.html#//apple_ref/doc/uid/TP40006556-CH18-SW10
Regards,
Bo
There is no such thing in iOS unfortunately. You might interested in reading this article about the difference between iOS and Android on this particular point.
This question already has answers here:
Closed 11 years ago.
What is the best way to let the users know that I have an update. I had seen once an application with update dialog but I really don't know how they did it. Can someone guide me with this? Thanks in advance!
I guess they either use unofficial android market api to get the latest app version or they pull own server which knows about updates.
Maby let your application query an internet server on startup :) Pretty straightforward but it will do just fine.