40103: Invalid authorization token signature

  • Thread starter Thread starter Yashdeep Prajapati
  • Start date Start date
Y

Yashdeep Prajapati

Guest
I am sending messages to Azure Service to Topic and getting below error. Is there a reason for this error?

40103: Invalid authorization token signature

code:

var topicClient = TopicClient.CreateFromConnectionString(serviceBusConnectionString, topicName);
topicClient.RetryPolicy = new RetryExponential(TimeSpan.FromSeconds(0.1), TimeSpan.FromSeconds(30.0), 5);

await topicClient.SendAsync(msg);

Continue reading...
 
Back
Top