Skip to content
This repository has been archived by the owner on Apr 9, 2019. It is now read-only.
/ stormpath-sdk-go Public archive

Go SDK for the Stormpath API

License

Notifications You must be signed in to change notification settings

jarias/stormpath-sdk-go

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

97 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Go SDK for the Stormpath API

Develop:

Build Status Coverage Status

Master:

Build Status Coverage Status

#Usage

go get github.com/jarias/stormpath-sdk-go

import "github.com/jarias/stormpath-sdk-go"
import "fmt"

//This would look for env variables first STORMPATH_API_KEY_ID and STORMPATH_API_KEY_SECRET if empty
//then it would look for os.Getenv("HOME") + "/.config/stormpath/apiKey.properties" for the credentials
credentials, _ := stormpath.NewDefaultCredentials()

//Init Whithout cache
stormpath.Init(credentials, nil)

//Get the current tenant
tenant, _ := stormpath.CurrentTenant()

//Get the tenat applications
apps, _ := tenant.GetApplications(stormpath.NewDefaultPageRequest(), stormpath.NewEmptyFilter())

//Get the first application
app := apps.Items[0]

//Authenticate a user against the app
accountRef, _ := app.AuthenticateAccount("username", "password")

//Print the account information
account, _ := accountRef.GetAccount()
fmt.Println(account)

Features:

  • Cache with a sample Redis implementation
  • Almost 100% of the Stormpath API implemented
  • Load credentials via properties file or env variables
  • Requests are authenticated via Stormpath SAuthc1 algorithm

#License

Copyright 2014 Julio Arias

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.