You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,9 +22,9 @@
22
22
*[Integrating with OpenAPI Generator API Client Libraries](#integrating-with-openapi-generator-api-client-libraries)
23
23
24
24
## Overview <aname="overview"></a>
25
-
*`OAuth1Signer.Core` is a zero dependency library for generating a Mastercard API compliant OAuth signature
26
-
*`OAuth1Signer.RestSharpV2` is an extension dedicated to [RestSharp](https://restsharp.dev/)
27
-
*`OAuth1Signer.RestSharp` is an extension dedicated to [RestSharp Portable](https://github.com/FubarDevelopment/restsharp.portable) (project no longer maintained)
25
+
*[`OAuth1Signer.Core`](https://www.nuget.org/packages/Mastercard.Developer.OAuth1Signer.Core/) is a zero dependency library for generating a Mastercard API compliant OAuth signature
26
+
*[`OAuth1Signer.RestSharpV2`](https://www.nuget.org/packages/Mastercard.Developer.OAuth1Signer.RestSharpV2/) is an extension dedicated to [RestSharp](https://restsharp.dev/)
27
+
*[`OAuth1Signer.RestSharp`](https://www.nuget.org/packages/Mastercard.Developer.OAuth1Signer.RestSharp/) is an extension dedicated to [RestSharp Portable](https://github.com/FubarDevelopment/restsharp.portable) (project no longer maintained)
28
28
29
29
### Compatibility <aname="compatibility"></a>
30
30
@@ -71,7 +71,7 @@ var signingKey = AuthenticationUtils.LoadSigningKey(
71
71
```
72
72
73
73
### Creating the OAuth Authorization Header <aname="creating-the-oauth-authorization-header"></a>
74
-
The method that does all the heavy lifting is `OAuth.GetAuthorizationHeader`, in the `OAuth1Signer.Core` package.
74
+
The method that does all the heavy lifting is `OAuth.GetAuthorizationHeader`, in the [`OAuth1Signer.Core`](https://www.nuget.org/packages/Mastercard.Developer.OAuth1Signer.Core/) package.
75
75
You can call into it directly and as long as you provide the correct parameters, it will return a string that you can add into your request's `Authorization` header.
76
76
77
77
```cs
@@ -96,7 +96,7 @@ Usage briefly described below, but you can also refer to the test project for ex
The `NetHttpClientSigner` class is located in the `OAuth1Signer.Core` package.
99
+
The `NetHttpClientSigner` class is located in the [`OAuth1Signer.Core`](https://www.nuget.org/packages/Mastercard.Developer.OAuth1Signer.Core/) package.
100
100
101
101
Usage:
102
102
```cs
@@ -124,7 +124,7 @@ internal class RequestSignerHandler : HttpClientHandler
124
124
125
125
#### RestSharp <a name="restsharp"></a>
126
126
127
-
A `RestSharpSigner` classisprovidedforbothRestSharpandRestSharpPortable. Itcanbefoundinthe `OAuth1Signer.RestSharp` and `OAuth1Signer.RestSharpV2` packages.
127
+
A `RestSharpSigner` classisprovidedforbothRestSharpandRestSharpPortable. Itcanbefoundinthe[`OAuth1Signer.RestSharp`](https://www.nuget.org/packages/Mastercard.Developer.OAuth1Signer.RestSharp/) and [`OAuth1Signer.RestSharpV2`](https://www.nuget.org/packages/Mastercard.Developer.OAuth1Signer.RestSharpV2/) packages.
0 commit comments