How can I do an Amazon App Store search using an Intent and filter it by developer name?

后端 未结 5 600
忘掉有多难
忘掉有多难 2021-01-03 08:12

Is there a way to start an Intent on the Kindle Fire that will cause the AppStore app to open and display all the apps for a certain developer? For instance, on a phone/tab

5条回答
  •  一个人的身影
    2021-01-03 08:54

    From - https://developer.amazon.com/help/tuabg.html

    For in-app advertising or mobile browser based linking, please: Use this link structure: http:// www.amazon.com/gp/mas/dl/android?p=com.example.package/ref=mas_pm_app_name

    For a link that directs to a list of all of your apps within our U.S. store, please: Use this link structure: http://www.amazon.com/gp/mas/dl/android?p=com.example.package&showAll=1

    Now, you think amazon would have this correct on their own website, but the first part that I put in bold is wrong. This is what it should actually be:

    http://www.amazon.com/gp/mas/dl/android?p=com.example.package&ref=mas_pm_app_name

    Notice the & instead of the / between the package name and ref. Hopefully this helps some other people since this little detail wasted some of my time...

提交回复
热议问题