2

I am developing application that support Nook Kindle. I have to specify my nook app link to Rate my app. For Kindle I Used "http://www.amazon.com/gp/mas/dl/android?p=pacakgeName" and for google play the link is "https://play.google.com/store/apps/details?id=pacakgeName".

Similarly is there and link to find my application by just giving the package name etc.

Thanks.

Sniper
  • 2,412
  • 11
  • 44
  • 49
  • Please don't show "Rate my app" dialog, such dialogs are so annoying...:( – ozbek Jun 26 '13 at 09:57
  • @shoerat Thanks for suggestion. This is not for rate my app. This to provide app link to the users through website. If you have any solution pls provide me. – Sniper Jun 26 '13 at 14:12

2 Answers2

3

The Nook App store uses EAN to build the URL, not package name. EAN stands for Internation Article Number (renamed from European Article Number but the old abbreviation remains).

Template:

https://nookdeveloper.barnesandnoble.com/tools/dev/linkManager/{EAN}

For example:

https://nookdeveloper.barnesandnoble.com/tools/dev/linkManager/2940043865557

links to The Smithsonian Channel app with EAN 2940043865557.

More info:

Nook Developer Forum - Nook Dev Relations confirms we should use EAN to link, but URL examples don't work.

Corona Labs Forum - Correct URL example.

Gunnar Karlsson
  • 28,350
  • 10
  • 68
  • 71
0

It's preferrable to use deep store linking as described here: Nook deep linking

Code snippet from the link above:

import android.content.Intent;
Intent i = new Intent();
i.setAction( "com.bn.sdk.shop.details" );
i.putExtra( "product_details_ean" , "2940043350251" );
startActivity( i );
deko
  • 2,534
  • 3
  • 34
  • 48