Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
github.com/jrmycanady/nokiahealth
This is a go client that allows easy access to the Nokia Health API and as of v2 supports the required Oauth2. More documentation regarding the Nokia Health API can be found here. More detailed documentation of the client can be found in the godocs.
Nokia changed the API to allow Oauth2 while removing Oauth1 as an option. Due to this change, the client API has changed when it comes to handling authentication and tokens. For the most part the changes make things easier but they are breaking changes. The good new is there is no longer a dependency on the forked Ouath1 implementation.
go get github.com/jrmycanady/nokiahealth
It's best if you read up on Oauth2 if you are not familiar but the client should be simple enough to get working without understanding how Oauth2 works.
1. Obtain your ClientID and ClientSecret 2. Create a new client
clientID := "id"
clientSecrete := "secret"
clientRedirectURL := "url" // This is the URL nokia will redirect the client to
// after they authorized your application. This is
// the same URL you provided when you registered your
// application with Nokia.
// For any real world use you will need to have a
// http server running and listening on that URL
// so you can obtain the code that is retruned.
// For simple testing you can just manually navigate
// to the URL that will be generated and copy the
// code.
client := nokiahealth.NewClient(clientID, clientSecret, clientRedirectURL)
3. Generate the authorization URL.
authURL, _, err := client.AuthCodeURL() // Ignoring the state in this example
// but in realworld use you will want
// to record this to compare to the
// state value returned by the redirect
// from nokia to verify its a redirect
// from your request.
// The stat is auto generated for you
// using cyrto/rand but the random
// generation can be replaced with your
// own function if you would like.
4. User navigates to URL and the code and state are retrieved. 5. Create new user using returned code.
u, err := client.NewUserFromAuthCode(context.Background(), code) // Obviously
// use whatever context you would like
// here.
if err != nil {
panic(err) // Handle the error however is appropriate for your code.
}
6. DONE - you now have a user that can make data requests.
1. Create a new client
clientID := "id"
clientSecrete := "secret"
clientRedirectURL := "url" // This is the URL nokia will redirect the client to
// after they authorized your application. This is
// the same URL you provided when you registered your
// application with Nokia.
// For any real world use you will need to have a
// http server running and listening on that URL
// so you can obtain the code that is returned.
// For simple testing you can just manually navigate
// to the URL that will be generated and copy the
// code.
client := nokiahealth.NewClient(clientID, clientSecret, clientRedirectURL)
2. Generate a new user from the stored tokens.
// This creates a new user based on the tokens provided. Technically the
// accessToken can be gibberish and the refresh Token is the one that is really
// required.
u, err := client.NewUserFromRefreshToken(context.Background(), accessToken, refreshToken)
3. DONE - you now have a user that can make data requests.
Requests are performed from methods on the User. Each request accepts a specific query struct with the details for the request. For example:
p := nokiahealth.BodyMeasuresQueryParams{}
t := time.Now().AddDate(0, 0, -14)
p.StartDate = &t
m, err := u.GetBodyMeasures(&p)
In most cases the response will contain all the information you need. Some methods provide additional optional processing that can provide a more usable form to the data. GetBodyMeasures is one of these methods. It's recommended to read the docs for each method to see how best to use them.
measures := m.ParseData()
Every request method has a partner method ending with Ctx that takes a context that will be used for the HTTP call. This allows you to provide a custom context if you desire.
p := nokiahealth.BodyMeasuresQueryParams{}
t := time.Now().AddDate(0, 0, -14)
p.StartDate = &t
m, err := u.GetBodyMeasuresCtx(context.Background(), &p)
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.