Skip to content

Commit 2144887

Browse files
committed
Added NuGet links
1 parent 017bd96 commit 2144887

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
* [Integrating with OpenAPI Generator API Client Libraries](#integrating-with-openapi-generator-api-client-libraries)
2323

2424
## Overview <a name="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)
2828

2929
### Compatibility <a name="compatibility"></a>
3030

@@ -71,7 +71,7 @@ var signingKey = AuthenticationUtils.LoadSigningKey(
7171
```
7272

7373
### Creating the OAuth Authorization Header <a name="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.
7575
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.
7676

7777
```cs
@@ -96,7 +96,7 @@ Usage briefly described below, but you can also refer to the test project for ex
9696

9797
#### System.Net.Http.HttpClient <a name="system-net-http-httpclient"></a>
9898

99-
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.
100100

101101
Usage:
102102
```cs
@@ -124,7 +124,7 @@ internal class RequestSignerHandler : HttpClientHandler
124124

125125
#### RestSharp <a name="restsharp"></a>
126126

127-
A `RestSharpSigner` class is provided for both RestSharp and RestSharp Portable. It can be found in the `OAuth1Signer.RestSharp` and `OAuth1Signer.RestSharpV2` packages.
127+
A `RestSharpSigner` class is provided for both RestSharp and RestSharp Portable. It can be found in the [`OAuth1Signer.RestSharp`](https://www.nuget.org/packages/Mastercard.Developer.OAuth1Signer.RestSharp/) and [`OAuth1Signer.RestSharpV2`](https://www.nuget.org/packages/Mastercard.Developer.OAuth1Signer.RestSharpV2/) packages.
128128
129129
Usage:
130130
```cs
@@ -173,7 +173,7 @@ See also:
173173
174174
##### Usage of the `RestSharpSigner`
175175

176-
`RestSharpSigner` is located in the `OAuth1Signer.RestSharpV2` package.
176+
`RestSharpSigner` is located in the [`OAuth1Signer.RestSharpV2`](https://www.nuget.org/packages/Mastercard.Developer.OAuth1Signer.RestSharpV2/) package.
177177
178178
##### Usage
179179

@@ -224,7 +224,7 @@ See also:
224224
225225
##### Usage of the `RestSharpOAuth1Authenticator`
226226

227-
`RestSharpOAuth1Authenticator` is located in the `OAuth1Signer.RestSharp` package.
227+
`RestSharpOAuth1Authenticator` is located in the [`OAuth1Signer.RestSharp`](https://www.nuget.org/packages/Mastercard.Developer.OAuth1Signer.RestSharp/) package.
228228
229229
```cs
230230
var config = Configuration.Default;

0 commit comments

Comments
 (0)