1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
# coding: utf-8
# -------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
# --------------------------------------------------------------------------
"""
FILE: identity_sample_async.py
DESCRIPTION:
These samples demonstrate async identity client samples.
///authenticating a client via a connection string
USAGE:
python identity_samples_async.py
"""
import asyncio
import os
class CommunicationIdentityClientSamples(object):
def __init__(self):
self.connection_string = os.getenv('AZURE_COMMUNICATION_SERVICE_CONNECTION_STRING')
async def issue_token(self):
from azure.communication.administration.aio import CommunicationIdentityClient
identity_client = CommunicationIdentityClient.from_connection_string(self.connection_string)
async with identity_client:
user = await identity_client.create_user()
print(user.identifier)
tokenresponse = await identity_client.issue_token(user, scopes=["chat"])
print(tokenresponse)
async def revoke_tokens(self):
from azure.communication.administration.aio import CommunicationIdentityClient
identity_client = CommunicationIdentityClient.from_connection_string(self.connection_string)
async with identity_client:
user = await identity_client.create_user()
tokenresponse = await identity_client.issue_token(user, scopes=["chat"])
await identity_client.revoke_tokens(user)
print(tokenresponse)
async def create_user(self):
from azure.communication.administration.aio import CommunicationIdentityClient
identity_client = CommunicationIdentityClient.from_connection_string(self.connection_string)
async with identity_client:
user = await identity_client.create_user()
print(user.identifier)
async def delete_user(self):
from azure.communication.administration.aio import CommunicationIdentityClient
identity_client = CommunicationIdentityClient.from_connection_string(self.connection_string)
async with identity_client:
user = await identity_client.create_user()
await identity_client.delete_user(user)
async def main():
sample = CommunicationIdentityClientSamples()
await sample.create_user()
await sample.delete_user()
await sample.issue_token()
await sample.revoke_tokens()
if __name__ == '__main__':
loop = asyncio.get_event_loop()
loop.run_until_complete(main())
|