-
Notifications
You must be signed in to change notification settings - Fork 2.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TokenProviders #107
Comments
We'll need to investigate. I had no knowledge of this functionality, therefore there was no plan on adding it. |
That is the main point, there is absolutely 0% documentation on this feature given that the C# code is closed source. |
Are there any plans for this to be implemented? For servicebus features this is kind of a big thing afaik. |
There is an interface you can use to provide the signature to the request, which is close to the behavior asked here. The class must provide an implementation of the class ServiceBusCustomAuthentication:
def sign_request(self, request, httpclient):
# Example when adding an header, but you can do anything you want with the request
request.headers.append(
('Authorization', 'my sensitive authentication string')
) Then, create the client = ServiceBusService(authentication=ServiceBusCustomAuthentication()) ACS implementation Please tell me if you think this does not answer the question. |
Close this one due to inactivity. Please feel free to open a new issue or re-comment here if you think my latest comment does not response to the bug. |
In the current Python code I cannot find any interface to specify a TokenProvider similar to the C# SDK. When can this be expected?
http://msdn.microsoft.com/en-us/library/microsoft.servicebus.tokenprovider.aspx
We would like to have this code working using the Python API.
The text was updated successfully, but these errors were encountered: