1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
| package lee;
import com.gargoylesoftware.htmlunit.HttpMethod; import org.apache.http.HttpResponse; import org.apache.http.client.HttpClient; import org.apache.http.client.config.RequestConfig; import org.apache.http.client.entity.UrlEncodedFormEntity; import org.apache.http.client.methods.CloseableHttpResponse; import org.apache.http.client.methods.HttpGet; import org.apache.http.client.methods.HttpPost; import org.apache.http.impl.client.CloseableHttpClient; import org.apache.http.impl.client.DefaultHttpClient; import org.apache.http.impl.client.HttpClients; import org.apache.http.message.BasicNameValuePair; import org.apache.http.params.BasicHttpParams; import org.apache.http.params.HttpParams; import org.apache.http.util.EntityUtils; import org.junit.jupiter.api.Test;
import java.io.IOException; import java.net.URI; import java.net.URISyntaxException; import java.nio.charset.StandardCharsets; import java.util.ArrayList; import java.util.Base64; import java.util.List; import java.util.Map;
public class TT {
public static String authorization_server = "http://127.0.0.1:3001/"; public static String resource_server = "http://127.0.0.1:4001/";
@Test public void getCodeByAuthorization_code() throws IOException {
try (CloseableHttpClient httpClient = HttpClients.createDefault()) { String url = "http://localhost:3001/oauth/authorize" + "?response_type=code" + "&grant_type=authorization_code" + "&client_id=client1" + "&redirect_uri=http://127.0.0.1:8080/callback" + "&scope=scope1" + "&state=admin"; HttpGet httpGet = new HttpGet(url);
try (CloseableHttpResponse response = httpClient.execute(httpGet)) { int statusCode = response.getStatusLine().getStatusCode(); if (statusCode == 302) { String redirectUrl = response.getFirstHeader("Location").getValue(); System.out.println("Redirected to: " + redirectUrl);
URI uri = new URI(redirectUrl); String query = uri.getQuery(); System.out.println("Query: " + query); } else { System.out.println("Failed with HTTP error code: " + statusCode); } } catch (URISyntaxException e) { throw new RuntimeException(e); } } }
@Test public void getTokenByCode() throws IOException { String[] params = new String[]{ "client_id", "client1", "client_secret", "123123", "&redirect_uri=http://127.0.0.1:8080/index" + "code", "LSji7Z", "state", "admin", "grant_type", "authorization_code" }; try (CloseableHttpClient httpClient = HttpClients.createDefault()){ String url = "http://localhost:3001/oauth/token" + "?grant_type=authorization_code" + "&client_id=client1" + "&client_secret=123123" + "&redirect_uri=http://127.0.0.1:8080/callback" + "&code=nTzOq3" + "&state=admin"; HttpPost httpGet = new HttpPost(url);
HttpResponse response = httpClient.execute(httpGet); System.out.println(response.getStatusLine().getStatusCode()); if (response.getStatusLine().getStatusCode() == 200) { String result = EntityUtils.toString(response.getEntity(), "UTF-8"); System.out.println(result); }else { System.out.println("==========="); } }catch (Exception e){ System.out.println(); } }
@Test public void getTokenByRefresh_token() throws IOException { String[] params = new String[]{ "grant_type", "refresh_token", "refresh_token", "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOlsicmVzb3VyY2UxIl0sInVzZXJfbmFtZSI6ImFkbWluIiwic2NvcGUiOlsic2NvcGUxIl0sImF0aSI6Ijk2ZjgyYzFlLTczZWQtNDRkOC04M2RkLWQ0NmJhOTQ2OGU5NiIsImV4cCI6MTcyOTY3MTM4OSwiYXV0aG9yaXRpZXMiOlsiYWRtaW4iXSwianRpIjoiMzM1MjBhMGEtNTQzYy00MGI2LTgyMzItMTU0NDI1NGU5YWEzIiwiY2xpZW50X2lkIjoiY2xpZW50MSJ9.3wr1xfyKYpe9XN3z48Qz5Ya22Upn4SzW1VM9q5PYAac", "scope", "scope1" };
try (CloseableHttpClient httpClient = HttpClients.createDefault()){ String url = "http://localhost:3001/oauth/token" + "?grant_type=refresh_token" +
"&refresh_token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOlsicmVzb3VyY2UxIl0sInVzZXJfbmFtZSI6ImFkbWluIiwic2NvcGUiOlsic2NvcGUxIl0sImF0aSI6Ijk2ZjgyYzFlLTczZWQtNDRkOC04M2RkLWQ0NmJhOTQ2OGU5NiIsImV4cCI6MTcyOTY3MTM4OSwiYXV0aG9yaXRpZXMiOlsiYWRtaW4iXSwianRpIjoiMzM1MjBhMGEtNTQzYy00MGI2LTgyMzItMTU0NDI1NGU5YWEzIiwiY2xpZW50X2lkIjoiY2xpZW50MSJ9.3wr1xfyKYpe9XN3z48Qz5Ya22Upn4SzW1VM9q5PYAac" + "&scope=scope1"; HttpPost httpGet = new HttpPost(url); String s = Base64.getEncoder().encodeToString("client1:123123".getBytes(StandardCharsets.UTF_8)); httpGet.setHeader("Authorization","Basic "+s);
HttpResponse response = httpClient.execute(httpGet); System.out.println(response.getStatusLine().getStatusCode()); if (response.getStatusLine().getStatusCode() == 200) { String result = EntityUtils.toString(response.getEntity(), "UTF-8"); System.out.println(result); }else { System.out.println("==========="); } }catch (Exception e){ System.out.println(); }
}
@Test public void getTokenByPassword() throws IOException { String[] params = new String[]{ "client_id", "client1", "client_secret", "123123", "grant_type", "password", "username", "admin", "password", "admin" }; HttpUtil.send(HttpMethod.POST, authorization_server + "oauth/token", null, null, params);
}
@Test public void getTokenByImplicit() throws IOException { String[] params = new String[]{ "client_id", "client1", "client_secret", "123123", "redirect_uri", "http://127.0.0.1:8080/index2", "grant_type", "implicit", "response_type", "token", "state", "admin" }; HttpUtil.send(HttpMethod.POST, authorization_server + "oauth/authorize", null, null, params);
try (CloseableHttpClient httpClient = HttpClients.createDefault()){ String url = "http://localhost:3001/oauth/token" + "?grant_type=implicit" + "&client_id=client1" + "&client_secret=123123" + "&response_type=token" + "&state=admin" + "&redirect_uri=http://127.0.0.1:8080/index2"; HttpPost httpGet = new HttpPost(url);
HttpResponse response = httpClient.execute(httpGet); System.out.println(response.getStatusLine().getStatusCode()); if (response.getStatusLine().getStatusCode() == 200) { String result = EntityUtils.toString(response.getEntity(), "UTF-8"); System.out.println(result); }else { System.out.println("==========="); } }catch (Exception e){ System.out.println(); }
}
@Test public void getTokenByClient() throws IOException { String[] params = new String[]{ "client_id", "client1", "client_secret", "123123", "grant_type", "client_credentials" }; HttpUtil.send(HttpMethod.POST, authorization_server + "oauth/token", null, null, params);
}
@Test public void checkToken() throws IOException {
String[] params = new String[]{ "token", "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOlsicmVzb3VyY2UxIl0sInVzZXJfbmFtZSI6ImFkbWluIiwic2NvcGUiOlsic2NvcGUxIiwic2NvcGUyIl0sImV4cCI6MTcyOTQ5MjczMSwiYXV0aG9yaXRpZXMiOlsiYWRtaW4iXSwianRpIjoiZThhNTU5YTAtZjYyNS00ZWVjLWJhZTUtOGQ5NWQ4MjAxY2M5IiwiY2xpZW50X2lkIjoiY2xpZW50MSJ9.vyh3SnfnAiZQKO23BPej8lebkFw-CLELOL-SHPb-Qo0", }; HttpUtil.send(HttpMethod.POST, authorization_server + "oauth/check_token", null, null, params); }
@Test public void getResourceByToken() throws IOException {
Map<String, String> head = RootUtil.buildMap("Authorization", "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOlsicmVzb3VyY2UxIl0sInVzZXJfbmFtZSI6ImFkbWluIiwic2NvcGUiOlsic2NvcGUxIiwic2NvcGUyIl0sImV4cCI6MTcyOTczODM3OCwiYXV0aG9yaXRpZXMiOlsiYWRtaW4iXSwianRpIjoiYTlkOTZkOTEtMjNiNC00Y2ZhLWE2YzctZGY5YWZiZTU0OTg0IiwiY2xpZW50X2lkIjoiY2xpZW50MSJ9.QZDoar_8oLe-F1eepbwTrjtemSPZdB89fSJxXysbiLQ");
HttpUtil.send(HttpMethod.POST,resource_server + "/me",head,null); } }
|