Skip to content

Commit

Permalink
Merge pull request #13 from Keyfactor/bugfix-reissueauth
Browse files Browse the repository at this point in the history
PickupCertificateById wasn't passing auth header
  • Loading branch information
dgaley authored Apr 20, 2022
2 parents a69a3c5 + 6df4b8c commit c532539
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/GlobalSignCAProxy/Client/GlobalSignApiClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,10 @@ public CAConnectorCertificate PickupCertificateById(string caRequestId)
Logger.Debug($"Attempting to pick up order with order ID {caRequestId}");
QbV1GetOrderByOrderIdRequest request = new QbV1GetOrderByOrderIdRequest
{
QueryRequestHeader = new Services.Query.QueryRequestHeader
{
AuthToken = Config.GetQueryAuthToken()
},
OrderID = caRequestId,
OrderQueryOption = new OrderQueryOption
{
Expand Down

0 comments on commit c532539

Please sign in to comment.