Skip to content

Commit

Permalink
Merge pull request dghubble#10 from apinnecke/master
Browse files Browse the repository at this point in the history
Added xing provider
  • Loading branch information
dghubble authored Sep 18, 2016
2 parents b0d5c93 + 3b47607 commit 955bdf2
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions xing/xing.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// Package xing provides constants for using OAuth1 to access Xing.
package xing

import (
"github.com/dghubble/oauth1"
)

// Endpoint is Xing's OAuth 1 endpoint.
var Endpoint = oauth1.Endpoint{
RequestTokenURL: "https://api.xing.com/v1/request_token",
AuthorizeURL: "https://api.xing.com/v1/authorize",
AccessTokenURL: "https://api.xing.com/v1/access_token",
}

0 comments on commit 955bdf2

Please sign in to comment.