-
Notifications
You must be signed in to change notification settings - Fork 71
Add OAuth1 realm parameter. #44
Add OAuth1 realm parameter. #44
Conversation
Adds an option to send a `realm="..."` parameter in the Authentication
headers, for example:
```
function getService() {
return OAuth1.createService("NetSuite")
.setRealm('1234567_SB1')
.setConsumerKey(CONSUMER_KEY)
.setConsumerSecret(CONSUMER_SECRET)
.setAccessToken(TOKEN, TOKEN_SECRET);
}
```
|
Thanks for your pull request. It looks like this may be your first contribution to a Google open source project (if not, look below for help). Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). 📝 Please visit https://cla.developers.google.com/ to sign. Once you've signed (or fixed any issues), please reply here (e.g. What to do if you already signed the CLAIndividual signers
Corporate signers
ℹ️ Googlers: Go here for more info. |
erickoledadevrel
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the contribution! A few small comments, and also please accept the CLA.
|
CLAs look good, thanks! ℹ️ Googlers: Go here for more info. |
|
Thanks against for the contribution! |
|
Hi @erickoledadevrel @alephyud is this deployed yet? I'm getting a "Cannot find function setRealm in object when referencing version 16 in App Maker. Thanks |
|
Just released version 17, which includes this change. |
Adds an option to send a
realm="..."parameter in the Authentication header, for example: