在我目前的应用程序(A)中,我将用户重定向到另一个网站(B),用户使用他/她的帐户登录并完成一些活动,现在该网站(B)有一个按钮可以返回我的应用程序(A) ),通过发布SAMLResponse
来重定向。
当用户点击该按钮时,用户返回我的应用程序(A),其中包含该网站(B)在标题信息的“Form Data
”中分配的特定唯一用户ID。基本上网站B也发布{{1作为请求中的表单参数。
如何在php和java中读取此请求信息?
答案 0 :(得分:4)
“表单数据”部分不清楚,但您可以将所需网址/表单的源代码打印到控制台,如下所示:
import java.io.*;
import java.net.*;
public class Client {
public String getHTML(String urlToRead) {
URL url;
HttpURLConnection conn;
BufferedReader rd;
String line;
String result = "";
try {
url = new URL(urlToRead);
conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("GET");
rd = new BufferedReader(new InputStreamReader(conn.getInputStream()));
while ((line = rd.readLine()) != null) {
//basically makes a huge string
result += line;
}
rd.close();
} catch (Exception e) {
e.printStackTrace();
}
return result;
}
public static void main(String args[])
{
Client c = new Client();
System.out.println(c.getHTML("YOUR URL HERE"));
//prints source code to console
}
//from here, you need to know which item you want to do is at which index of the string
}
答案 1 :(得分:3)
以下链接很有帮助,但它们并不完全符合您的要求。 看看......
此致
[1] http://www.coderanch.com/t/545270/java/java/Decode-SAML-Request