Documentation ¶
Overview ¶
Package apiauth provides handlers to enable apiauth support.
Simple Usage:
import( "github.com/astaxie/beego" "github.com/astaxie/beego/plugins/apiauth" ) func main(){ // apiauth every request beego.InsertFilter("*", beego.BeforeRouter,apiauth.APIBaiscAuth("appid","appkey")) beego.Run() }
Advanced Usage:
func getAppSecret(appid string) string { // get appsecret by appid // maybe store in configure, maybe in database } beego.InsertFilter("*", beego.BeforeRouter,apiauth.APIAuthWithFunc(getAppSecret, 360))
Infomation:
In the request user should include these params in the query ¶
1. appid
appid is asigned to the application
2. signature
get the signature use apiauth.Signature() when you send to server remember use url.QueryEscape()
3. timestamp:
send the request time, the format is yyyy-mm-dd HH:ii:ss
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func APIAuthWithFunc ¶
func APIAuthWithFunc(f AppIdToAppSecret, timeout int) beego.FilterFunc
func APIBaiscAuth ¶
func APIBaiscAuth(appid, appkey string) beego.FilterFunc
Types ¶
type AppIdToAppSecret ¶
Click to show internal directories.
Click to hide internal directories.