| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
StoreClient is a Portable Class Library that will allow you to acces the data used in the Windows Phone Store app. Allowing you to search for music (albums, artists) and apps. The client also gives you methods for getting the image URLs needed to display the same images that the Store app uses.
My own licence for this is use it as much as you want, do what you want, just create awesome stuff with it, got that!
Basically, .NET 4.0+, Silverlight 4+, Windows Phone (7 and 8), Windows Store.
Installing this can be done through nuget, just use the following command:
Install-Package StoreClient -pre
Usage is very simple and uses the async/await methodology.
A simple search:
var client = new StoreApiClient();
var results = await client.SearchAsync("The Dark Knight", includeArtists: false, includeTracks: false);Getting an album's image URL:
var client = new StoreApiClient();
var url = client.CreateAlbumArtUrl("534be700-0000-0000-0000-000000000000");Get an app's icon (the one that appears in the store):
var client = new StoreApiClient();
var url = var url = client.CreateAppImageUrl("490f05d0-ee29-4f5f-b5c9-66b48c6f63a2", ImageType.IconLarge);Sort of, it doesn't really do much yet though, will build it up a wee bit though.
I hope so. See what the future holds.
0.3.0.0 - Updated to use the latest version of HttpClient that supports automatic compression.
0.2.4.0
0.2.3.0
0.2.2.0
0.2.1.0
0.2.0.0 Added the following methods:
| Back | FazBrowse Home | New Git URL |