I am using BinarySecurityToken for OTA_AirRulesRQ, but I am getting USG_AUTHORIZATION_FAILED. I used the same token for BargainFinderMaxRQ and it worked. Is it some problem with the SOAP request I am sending or access to this method is not authorized form my PCC ?
Also I am able to hold PNR and Issue ticket with same credentials
Please Suggest
You should contact the API helpdesk providing your credentials
Do you point it to the according endpoint. E.g. getting creds from prod/testing and using it in prod/testing?
Can you post the message you are trying to send including headers. You can block out Pcc information, but it would help to see the message. It may be something simple you are overlooking and at the very least I could duplicate the call on my test bench and try to to duplicate the issue.
Related
I'm a beginner with this while magento/postman thing. Right now I'm trying to get a token and token secret from magento using postman, but I've been stuck for days now and I don't know where else to look for solutions.
I'm using a guide posted by Franklin Strube (user from this forum), but I can't get past the first step since the response I get is "oauth_problem=nonce_used".
I've already checked the following:
- No special ports re being used to connect to my webpage
- REST roles, attributes and clients have been set up correctly in order to have access to the APIs.
- My user has already a key and a secretm which I'm using to send the request via Postman through the GET method.
This is how my postman looks right now:
Please, I'd appreciate any help you can provide me.
Thanks a lot!
We're using the Intuit Customer Account Data API to connect to banks in our application. While the credentials and security questions go through fine, we're getting an Unauthorized error when we provide the answer to the security image (captcha image). Providing a blank does not help either. We get this error only when the answer is correct, in the case of incorrect answer the response is "Incorrect MFA answer".
Have you tried this use-case using CC_Bank( dummy FI setup for testing).
Here is the test username-pwd link for different use cases.
https://developer.intuit.com/docs/0020_customeraccountdata/customer_account_data_api/testing_calls_to_the_api
You should debug the use case using CC_Bank. If it still doesn't work then you should raise a support ticket.
https://developer.intuit.com/Support/Incident
Thanks
I'm getting this code and reason when attempting to connect to a morgan stanley account.
Code:103 The acquisitionrequest is missing a needed login credential value.
From what I understand a code 103 is invalid credentials. At the same time, this is not the usual error response and i'm pretty sure the login/password given is correct. Am I missing something on my discover request?
Can you please enable logging in your app, and share the request/response XML(please share it in a support ticket)
Support link - https://developer.intuit.com/docs/9_other_resources/0030_support/0010_submit_support_incidents
Logging Ref - https://developer.intuit.com/docs/0020_customeraccountdata/devkits/0275_java_cad_devkit_1.0/0035_logging
It could be some service issue.
Thanks
My application, created today, runs fine when I use it with my account. On any other account however, the following error is sent back as a response:
message: "(#298) You must be a developer of the application"
type: "OAuthException"
The exact code I'm using to send the request is this:
FB.api('/me/threads', {limit: 1000}, function(response){ ....
I have found someone experiencing the same problem, but the response he accepted didn't really provide any useful information. ( Reading over inbox, I get error #298).
Anyone have a clue on how to solve this? Would be greatly appreciated!
I'm guessing you have the read_mailbox permission?
Try accessing the /me/inbox connection instead?
Facebook tells you (from http://developers.facebook.com/docs/reference/api/thread/):
Please note: We are in the process of making the new messages system
available to all users, at which point this API will replace the
/inbox/ Graph API endpoint. We are providing early access to this API
for registered developer accounts only until the new messaging system
is broadly available. You should use the /inbox endpoint for
production applications at the current time.
That is, only the current apps developers will be able to use the threads-connection for now (but it will be available later).
It looks like your other account doesn't have a developer license/flag/attribute, thus failing the authentication check.
Currently, we are using GetHttpRequestData().headers to get real IP address of User. However, we are facing following issue. when we try to call SOAP web service request, we receive following error Premature end of file. I already searched the web and found out that there is bug in ColdFusion 8.0.
I don't know if this bug is resolved yet.
Is there any alternate solution?
Please help me.
thanks
Is the SOAP request coming in to ColdFusion from a client and that is where you are getting the error or is a user hitting a coldfusion page that is then making a soap request to some other service and that is generating the error?
We had the exact same issue. I don't know if you've found a solution yet but the workaround I found is using getPageContext().getRequest().getHeader("name of header here") to retrieve the request header I'm looking for. This doesn't break to SOAP calls like getHttpRequestData.