def get_app_only_access_token(self, target_host, target_realm):
     resource = self.get_formatted_principal(self.SharePointPrincipal, target_host, target_realm)
     principal_id = self.get_formatted_principal(self.client_id, None, target_realm)
     sts_url = self.get_security_token_service_url(target_realm)
     oauth2_request = self.create_access_token_request(principal_id, self.client_secret, resource)
     response = requests.post(url=sts_url, headers={'Content-Type': 'application/x-www-form-urlencoded'},
                              data=oauth2_request)
     return TokenResponse.from_json(response.json())
Esempio n. 2
0
    def authenticate_request(self, request):
        """

        :type request: RequestOptions
        """
        token_json = self._acquire_token_callback()
        token = TokenResponse.from_json(token_json)
        request.set_header('Authorization',
                           'Bearer {0}'.format(token.accessToken))
def acquire_token():
    authority_url = 'https://login.microsoftonline.com/{0}'.format(test_tenant)
    auth_ctx = adal.AuthenticationContext(authority_url)
    with open(cert_settings['certificate_path'], 'r') as file:
        key = file.read()
    json_token = auth_ctx.acquire_token_with_client_certificate(
        test_site_url, cert_settings['client_id'], key,
        cert_settings['thumbprint'])
    return TokenResponse(**json_token)
def acquire_token():
    authority_url = 'https://login.microsoftonline.com/{0}'.format(settings.get('default', 'tenant'))
    import msal
    app = msal.ConfidentialClientApplication(
        authority=authority_url,
        client_id=settings.get('client_credentials', 'client_id'),
        client_credential=settings.get('client_credentials', 'client_secret')
    )
    token_json = app.acquire_token_for_client(scopes=["https://mediadev8.sharepoint.com/.default"])
    return TokenResponse.from_json(token_json)
 def acquire_token(self, parameters):
     try:
         token_url = "{authority}/oauth2/token".format(authority=self.authority_url)
         response = requests.post(url=token_url,
                                  headers={'Content-Type': 'application/x-www-form-urlencoded'},
                                  data=parameters)
         self.token = TokenResponse.from_json(response.json())
         return self.token.is_valid
     except requests.exceptions.RequestException as e:
         self.error = "Error: {0}".format(e)
         return False
 def _acquire_token_for_client_certificate():
     authority_url = 'https://login.microsoftonline.com/{0}'.format(tenant)
     scopes = [f"{self.url}/.default"]
     credentials = {"thumbprint": thumbprint, "private_key": open(cert_path).read()}
     app = msal.ConfidentialClientApplication(
         client_id,
         authority=authority_url,
         client_credential=credentials,
     )
     result = app.acquire_token_for_client(scopes)
     return TokenResponse.from_json(result)
 def acquire_token():
     tenant_info = get_tenant_info(base_url)
     authority_url = 'https://login.microsoftonline.com/{0}'.format(
         tenant_info['name'])
     auth_ctx = adal.AuthenticationContext(authority_url)
     resource = tenant_info['base_url']
     with open(cert_path, 'r') as file:
         key = file.read()
     json_token = auth_ctx.acquire_token_with_client_certificate(
         resource, client_id, key, thumbprint)
     return TokenResponse(**json_token)
Esempio n. 8
0
    def __init__(self, url):
        """
        Provider to acquire the access token from a Microsoft Azure Access Control Service (ACS)

        :type url: str
        """
        self.token = TokenResponse()
        self.url = url
        self.redirect_url = None
        self.error = None
        self.SharePointPrincipal = "00000003-0000-0ff1-ce00-000000000000"
Esempio n. 9
0
    def _get_app_only_access_token(self, target_host, target_realm):
        """

        :type target_host: str
        :type target_realm: str
        """
        resource = self.get_formatted_principal(self.SharePointPrincipal,
                                                target_host, target_realm)
        principal_id = self.get_formatted_principal(self._client_id, None,
                                                    target_realm)
        sts_url = self.get_security_token_service_url(target_realm)
        oauth2_request = {
            'grant_type': 'client_credentials',
            'client_id': principal_id,
            'client_secret': self._client_secret,
            'scope': resource,
            'resource': resource
        }
        response = requests.post(
            url=sts_url,
            headers={'Content-Type': 'application/x-www-form-urlencoded'},
            data=oauth2_request)
        response.raise_for_status()
        return TokenResponse.from_json(response.json())
 def __init__(self, tenant):
     self.authority_url = "https://login.microsoftonline.com/{tenant}".format(tenant=tenant)
     self.version = "v1.0"
     self.error = None
     self.token = TokenResponse()