-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
juan-carl0s
committed
Feb 21, 2020
1 parent
63a3435
commit af53990
Showing
2 changed files
with
14 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,14 @@ | ||
# sfdcclient | ||
Salesforce HTTP client using OAuth 2.0 JWT bearer token flow | ||
|
||
sfdcclient is a golang package implementing a pseudo-wrapper to an HTTP client, | ||
making use of the [Salesforce OAuth 2.0 JWT Bearer Flow for Server-to-Server](https://help.salesforce.com/articleView?id=remoteaccess_oauth_jwt_flow.htm&type=5) | ||
authorization flow. | ||
|
||
## Installation | ||
`go get https://github.com/nicheinc/sfdcclient` | ||
|
||
## Usage | ||
|
||
``` | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
module sfdcclient | ||
module github.com/nicheinc/sfdcclient | ||
|
||
go 1.13 | ||
|
||
|