Hi. I am setting up a BingAds app on our server. After successfully receiving the auth and refresh token as the guide says, I try to make a test request. But my request is always rejected with an 105 error (as the code below).
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<s:Fault>
<faultcode>s:Server</faultcode>
<faultstring xml:lang="en-US">Invalid client data. Check the SOAP fault details for more information. TrackingId: 1c2ac59d-fa99-41af-9806-a6aefe0460d4.</faultstring>
<detail>
<AdApiFaultDetail xmlns="https://adapi.microsoft.com" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<TrackingId>1c2ac59d-fa99-41af-9806-a6aefe0460d4</TrackingId>
<Errors>
<AdApiError>
<Code>105</Code>
<Detail i:nil="true"/>
<ErrorCode>InvalidCredentials</ErrorCode>
<Message>Authentication failed. Either supplied credentials are invalid or the account is inactive</Message>
</AdApiError>
</Errors>
</AdApiFaultDetail>
</detail>
</s:Fault>
</s:Body>
</s:Envelope>
I have tried to make request both with Postman manually and with PHP SDK, and both get the same 105 error. I checked the developer token and tried developer token of other accounts, but no developer token did work. I also try to reget the auth token by refresh token, and tried the new auth token, but it does not work either.
Can I know what shall I do about it?