You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 20, 2024. It is now read-only.
So, the problem is that with C# I could solve this issue with the following code:
privateSoapClientCreateETFrameworkBinding(stringendpointAddress,stringusername,stringpassword){// Create the bindingBasicHttpBindingbinding=newBasicHttpBinding();binding.Name="SoapBinding";binding.Security.Mode=BasicHttpSecurityMode.TransportWithMessageCredential;binding.Security.Message.ClientCredentialType=BasicHttpMessageCredentialType.UserName;binding.ReceiveTimeout=newTimeSpan(0,10,0);binding.OpenTimeout=newTimeSpan(0,10,0);binding.CloseTimeout=newTimeSpan(0,10,0);binding.SendTimeout=newTimeSpan(0,10,0);binding.MaxBufferSize=2147483647;binding.MaxBufferPoolSize=524288;binding.MaxReceivedMessageSize=2147483647;// Set the transport security to UsernameOverTransport for Plaintext usernamesvarendpoint=newEndpointAddress(endpointAddress);// Create the SOAP Client (and pass in the endpoint and the binding)SoapClientetFramework=newSoapClient(binding,endpoint);// Set the username and passwordetFramework.ClientCredentials.UserName.UserName=username;etFramework.ClientCredentials.UserName.Password=password;returnetFramework;}
Now I'm trying to migrate to python the code, but so far I think that maybe I'm too dumb to really work with SOAP on python, so, here I'm trying to make this work with the Fuel Sdk. I look at the java repository and found that there's an option to use the username / password authentication rather than client ID / client Secret but in the python repository I just couln't figure it out how to connect with exacttarget.
Any lights?
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
So, the problem is that with C# I could solve this issue with the following code:
Now I'm trying to migrate to python the code, but so far I think that maybe I'm too dumb to really work with SOAP on python, so, here I'm trying to make this work with the Fuel Sdk. I look at the java repository and found that there's an option to use the username / password authentication rather than client ID / client Secret but in the python repository I just couln't figure it out how to connect with exacttarget.
Any lights?
The text was updated successfully, but these errors were encountered: