Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Proxyconnect - Custom integration question
Hello,
I'm trying to integrate my application with proxyconnect plugin.
But in the doc, I don't understand this:
"About the response format:
The response is sent as plain text using the HTTP transport. It is not sent as an HTML page. The response should not include HTML tags such as <'html'>, <'body'>, etc.
A newline character, \n, is used as a record separator. Do not use the HTML line break tag,
.
The response should start at the beginning of the HTTP protocol's body section."
Can someone give me an example ?
Thanks in advance for your help ;-)
I'm trying to integrate my application with proxyconnect plugin.
But in the doc, I don't understand this:
"About the response format:
The response is sent as plain text using the HTTP transport. It is not sent as an HTML page. The response should not include HTML tags such as <'html'>, <'body'>, etc.
A newline character, \n, is used as a record separator. Do not use the HTML line break tag,
.
The response should start at the beginning of the HTTP protocol's body section."
Can someone give me an example ?
Thanks in advance for your help ;-)
Tagged:
0
Answers
if(!empty($_COOKIE['userid'])){
echo "UniqueID=" .$_COOKIE['userid']
."\nName=" .$_COOKIE['username']
."\nEmail=" .$_COOKIE['useremail'];
}