Go SDK for the Stormpath API
Develop:
Master:
#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(MakeApplicationCriteria().NameEq("test app"))
//Get the first application
app := apps.Items[0]
//Authenticate a user against the app
account, _ := app.AuthenticateAccount("username", "password")
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
#Debugging
If you need to trace all requests done to stormpath you can enable debugging in the logs by setting the environment variable STORMPATH_LOG_LEVEL=DEBUG the default level is ERROR.
#Contributing
Pull request are more than welcome, all pull requests should be from and directed to the develop branch NOT master.
Please make sure you add tests ;)
#License
Copyright 2014, 2015 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.