Skip to content

movesnet/Moves.Net

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

General Build status

Moves.Net contains a client proxy which can be used to access the Moves API.

Usage

Download the NuGet package: https://www.nuget.org/packages/Moves.Net/

You need to obtain an authorization token before using the Moves.Net client. Once you have an authorization token, you can use the client to receive an access token. See authentication on how to obtain an authorization token.

Receive an access token:

	var client = new MovesClient(clientId, clientSecret);
	var accessToken = client.ReceiveAccessToken(authorizationToken, redirectUri);

Important: make sure the redirectUri contains the exact same value you used to obtain your authorization token

Use the client to access the API:

	var client = new MovesClient(clientId, clientSecret, accessToken);
	var result = client.Places.GetByDay(2014, 5, 5);

Releases

No releases published

Packages

No packages published