ios - 如何实现扫描一个二维码下载APP,就可以确定这个APP专属于这个二维码呢?
迷茫
迷茫 2017-04-17 15:29:12
0
4
826

我想实现扫描一个二维码下载APP ,之后就知道这个APP就是在扫这个二维码的而不是其他的。如果可以并且里面的会员信息也是属于这个APP的

就像加盟一个总店,之后每个加盟店都有自己的专属的APP(用扫描二维码来区分,实际上APPstore只存在一个APP) 。并每个加盟店的会员人数只属于这个店的。希望大神指导并提出意见或者看法。

迷茫
迷茫

业精于勤,荒于嬉;行成于思,毁于随。

reply all(4)
迷茫

It is relatively simple to achieve download statistics. If you want to bind members to the merchant, the following operations are for reference only.
For example:
Use this link to generate a QR code (distinguish different merchants through parameters key):

http://www.xxx.com/business/install?key=qerzc8345n

What the server needs to do to respond to this link:

  • Read the value of key to determine which merchant it is;
  • Record data: The merchant’s QR code has been scanned;
  • Save the current requested IP;
  • RedirectAppstoreInstall link.

After the App is installed, the API is called and the server determines:
* Use IP to determine which merchant it is and bind member information.

Disadvantages:
* The same IP can only lock one merchant.
* The network where the App is installed and the one where the App is opened for the first time are not the same, so there is no guarantee that the information will match correctly.

左手右手慢动作

The appstore itself will not provide this content, but if it is an enterprise certificate package, you can use different methods to generate an ipa for each store. This way it can definitely be distinguished. Another method is to create a download interface that records information, and then jump to the appstore through this interface.

黄舟

This requirement can be achieved through personalized APP installation. When your APP is downloaded through a QR code, you can know which QR code it comes from, and then you can do related processing. The third party in this area has openinstall which does a good job.

Ty80

This requirement of yours can be easily realized with the personalized installation of the app. Multiple QR codes can be downloaded from the appstore, but the user who downloads each QR code can be distinguished. openinstall provides ready-made app personalized installation sdk

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template