Check iphone app installation on device - iphone

I know unique udid/imei of devise and I need to know is this devise has installed my application.
Which mobile analytics has this information and API access to it?

Related

How to Trace Mobile App Install for share app ID across Apps?

I've two apps sharing the same app ID for Andriod Facebook login, which i would like to advertise both apps in Facebook mobile app install using optimization for App Install and charged for App Install rather than Impression, but it seems that i can only fill in 1 bundle ID for that facebook apps, any solution for this?
You should not reuse the same Facebook app ID for a second app.
One of the reasons is exactly what you are describing: you can only specify a single Android package name per app.

Same facebook key for lite and pro apps

I have a lite and pro version of my Iphone app, but my lite app rejected by appstore ,they cannot login through facebook. But in development mode i can able to login both pro and lite version through FB.
I have used same FB developer key for both lite and pro.
Is this the issue for rejection?
If i need to use different developer key for lite and pro version of same app?
Thanks,
Please check this SO post. It may help you.
urlSchemeSuffix is a string of lowercase letters that is appended to the base URL scheme used for SSO. For example, if your facebook ID is "350685531728" and you set urlSchemeSuffix to "abcd", the Facebook app will expect your application to bind to the following URL scheme: "fb350685531728abcd". This is useful if your have multiple iOS applications that share a single Facebook application id (for example, if you have a free and a paid version on the same app) and you want to use SSO with both apps. Giving both apps different urlSchemeSuffix values will allow the Facebook app to disambiguate their URL schemes and always redirect the user back to the correct app, even if both the free and the app is installed on the device.
urlSchemeSuffix is supported on version 3.4.1 and above of the Facebook app. If the user has an older version of the Facebook app installed and your app uses urlSchemeSuffix parameter, the SDK will proceed as if the Facebook app isn't installed on the device and redirect the user to Safari.
You can also refer this so post which helps you to understand how prefix works with Facebook.

Watching user activities in iphone SDK outside sandbox?

1) Is it possible to watch user's all activities of iPhone through iPhone SDK Programming As Symantec has developed norton online family inwhich user's iphone safari activities are savedin hidden way?
2) Is it possible to handle outside of sandbox environment which has been created using the application we install?
If you're asking if it is possible to actively monitor what websites a user is visiting using the safari browser and have that information to use in you're own app, it's not.
You can't access the data of another application.

Verify installed app with UDID or IMEI

I am running web app and trying to verify user's installed app with URL scheme.
iPhone Web App
Know user's UDID and IMEI
Know specific app's URL scheme.
I have tried a lot of scripts but it doesn't really help me to verify installed app.
Checking time delay and transfer to App Store by Javascript doesn't verify whether its installed or not.
Our hypothesis are these.
Get return result by checking Safari cookie with Custom URL scheme. (ex. twitter:// )
Send a UDID parameter to iTunes Store to find its installation.
Some people might say it is impossible, but I believe, as a programmer, there should be a way to solve this problem.
Thank you.

How to design the facebook id login process from iphone using GAE as the background server?

I'm designing an iPhone/android app which needs user to login using his/her facebook account.
The app uses GAE (Google App Engine) as the background server, so the problem now is that I don't know how GAE, iPhone and Facebook authentication works.
My guess is user login FB from iPhone and will get an access_token, and then the iphone app sends the access_token to GAE so that GAE can recognize the user.
Is that correct? Or is there any tutorial about how to cooperate between these platforms?
Thanks!
Take a look at the LeanEngine open source project. It was designed to do exactly what you are trying to do - login from a mobile device to GAE with Facebook or OpenID account (and sync data between the client and GAE).
It consists of a preprogrammed GAE application and libraries for Android and iOS and if you are satisfied with the built-in functionality you really do not need to do any modifications to the server part. You can just use it as it is.