I use reCaptcha and installed its php libraries . Anytime I send request to the server using the function 'recaptcha_check_answer' I get in response the error 'invalid-request-cookie'.
I've checked hundred of times if my challenge is ok, and also if I don't use SSL by mistake. So, anyone knows what could be wrong?
Thanks in advance
Related
I am using the native app's latest version and it was working good but suddenly this problem appeared still loading the request without any reply.
I tried to reinstall it but nothing changed a tried the environment variables for the postman and still the problem. What can I do? Please help. Thanks.
For anyone reading this: problem was that I was not connected to my database. I needed to whitelist my IP address in MongoDB Atlas.
Just so I'm not spamming SO, you can check out my full answer here: https://stackoverflow.com/a/58263695/11993942
I am a new PHP programmer. I am using reCaptcha for my website. It was showing normally earlier but does not show up now. The code is working on my localhost.
I have signed up for reCaptcha, entered my domain name and obtained the generated keys. After that, I downloaded the reccaptchalib.php and deployed it to my server.
Kindly help me as I don't know what to do next.
Thanks in advance!
Are you getting any PHP errors in the logs? Is it possible that you moved the reCaptcha library to a different path or moved the script?
I had a similar problem and it was caused by "cleaning up" and I moved the reCaptcha library into a subfolder.
I am integrating FirstData Telecash IPG Connect,
i configured it the same way mentioned in the document(http://www.telecash.de/fileadmin/data/IPG/IPG_IntegrationGuide_Connect_2_9.pdf),
but still get the same issue again and again that your "Pyament was not successfull"..
Did anybody worked on that??
Please share your experience.
Thank you
Okay the problem has been solved,
the problem is in telecash documentation, they did not mentioned in the document that the response URLs are mandatory..
So without added the response you can not successfully integrate the connect..
After adding the response URL it worked for me..
i am working in android. i have uploaded my database and APIs on my server. when i call a get API. then it works fine. But when i call POST API like as Registration then it creates problem and does not respond.
this is the problem in my LogCat
Some possible problems are:
Missing or unknown request method.
Missing URL.
Missing HTTP Identifier (HTTP/1.0).
Request is too large.
Content-Length missing for POST or PUT requests.
Illegal character in hostname; underscores are not allowed.
HTTP/1.1 Expect: feature is being asked from an HTTP/1.0 software.
when use API and database which is stored on my localhost then everything works fine.. please help me to find out the reason of error... is this related to proxy or something else. yes i activated proxy on my server.
if you want to ask anything related to my question then i am 24 hours available here..
this is the error page. please visit this link...
http://www.2shared.com/document/zTO7-x/error.html
please see my problem.
Thank you in advance...
I have done this by my self experience... this problem is created just because of my server proxy setting.
I allow that application from my server proxy then it working fine...
Thank you all who tried to help me...
i'm developing an application with multiple login and information export options like yahoo, google contacts, live contacts etc. I tried to do the oauth wrapper for aol, followed the examples in the http://dev.aol.com/api/openauth page but it doesnt works.
I just only wanted to know if there is anyone that chad succeeded with its specs and got some sample code working, i tried and got the token in response but when i try to do an api request i get the response : Key Used From unauthenticated site
does it have to run in a online server? do i have to get some rsa signed file on my server?
any hint is welcome, thank you very much!
I haven't tried it before but I think you have to tell them your the IP you will sent requests from..
I was making project over enom API and I had to send them my IP to authorize my API requests
sorry for my late response, have being little busy here. The code in the example finally worked right last time i tried, maybe their servers had some issues or i misconfigured the example, not sure, but in my project it didnt worked, finally i managed the solution by using the CURLOPT_REFERER parameter i found in the example. I am sure that it was the issue in my code, because i was testing in a devel environment with a .loc top level domain.
Finally i want to give a hint to all the people trying to develop 3rd party apps that check the validity of the urls asking for permissions, you could use a testing environment by using the CURLOPT_REFERER paramater by setting the production url you want in the testing environment.
file in the testing environment http://www.mycoolsite.loc.
curl_setopt( CURLOPT_REFERER 'http://www.mycoolsite.com' );
The site that will receive the answer will check the referer and assume the .com one instead the .loc
Thanks to everybody that tried to help me.