Dhyanesh97

Results 15 comments of Dhyanesh97

@alterhu2020 Have you tried connecting to amazon active MQ? Are you able to successfully connect?

+1, we are also facing same issue all of a sudden. Please suggest workaround asap.

While debugging we found that recently our identity provider for sharepoint online was changed from ADFS to NetIQ. The NetIQ SAML endpoint is named …/nidp/saml2/soap. However, it looks like the...

Workaround ``` from office365.runtime.auth.authentication_context import AuthenticationContext from office365.sharepoint.client_context import ClientContext from office365.sharepoint.files.file import File app_settings = { 'url': 'sharepoint_url, 'client_id': 'client_id, 'client_secret': 'client_secret, } sharepoint_file_path = sharepoint_file_path context_auth = AuthenticationContext(app_settings['url'])...

Go to below URL to generate client id and secret. https://domain-name.sharepoint.com/personal/user_name/_layouts/15/appregnew.aspx Append "_layouts/15/appregnew.aspx" to your share point URL. ![image](https://user-images.githubusercontent.com/89400147/187864128-a6fe71e3-c984-4bfc-af70-1b3cac16ba45.png) App Domain: https://www.localhost.com Redirect URL: https://www.localhost.com/default.aspx If you don't have access...

Not sure about it. Already there is open ticket for this issue I guess. Let me check and come back.

Please find link below. https://github.com/vgrem/Office365-REST-Python-Client/issues/333

please find below analysis after debugging the code => STSAuthUrl (https://sts.XXXXXX.com/adfs/services/trust/2005/usernamemixed) is picked and code is trying to get host by name as below ``` socket.gethostbyname("sts.XXXXXXXX.com") ``` On windows 10...

facing same issue with below code from office365.runtime.auth.user_credential import UserCredential from office365.sharepoint.client_context import ClientContext site_url = "https://XXXX-my.sharepoint.com/personal/XXXXXXXX/" username_env = '[email protected]' password_env = 'XXXXXX' relativeUrl = "Documents/XXXXXXX/" ctx = ClientContext(site_url).with_credentials(UserCredential(username_env, password_env))...

I am also struggling to setup an docker for alertmanager2es. Is there any proper doc for it ? Also I need to send alerts to elastic cloud so, can you...