43 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
<!--
 | 
						|
Copyright 2023 The Matrix.org Foundation C.I.C.
 | 
						|
 | 
						|
Licensed under the Apache License, Version 2.0 (the "License");
 | 
						|
you may not use this file except in compliance with the License.
 | 
						|
You may obtain a copy of the License at
 | 
						|
 | 
						|
    http://www.apache.org/licenses/LICENSE-2.0
 | 
						|
 | 
						|
Unless required by applicable law or agreed to in writing, software
 | 
						|
distributed under the License is distributed on an "AS IS" BASIS,
 | 
						|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
						|
See the License for the specific language governing permissions and
 | 
						|
limitations under the License.
 | 
						|
-->
 | 
						|
 | 
						|
<!--
 | 
						|
A dummy OAuth2 authorization endpoint (see https://openid.net/specs/openid-connect-core-1_0.html#AuthorizationEndpoint)
 | 
						|
 | 
						|
Mostly, it just redirects back to the `redirect_uri` in the query params.
 | 
						|
-->
 | 
						|
 | 
						|
<html lang="en">
 | 
						|
    <body>
 | 
						|
        <h1>Test OAuth page</h1>
 | 
						|
 | 
						|
        <form id="auth_form">
 | 
						|
            <input type="hidden" id="state" name="state" />
 | 
						|
            <label for="code">Auth Code:</label>
 | 
						|
            <input type="text" id="code" name="code" value="valid_auth_code" />
 | 
						|
            <input type="submit" value="Submit" />
 | 
						|
        </form>
 | 
						|
 | 
						|
        <script>
 | 
						|
            // process the query params, and set up the form
 | 
						|
            const urlParams = new URLSearchParams(window.location.search);
 | 
						|
            console.log("Test OAuth page: query params:", new Map(urlParams.entries()));
 | 
						|
            document.getElementById("auth_form").action = urlParams.get("redirect_uri");
 | 
						|
            document.getElementById("state").value = urlParams.get("state");
 | 
						|
        </script>
 | 
						|
    </body>
 | 
						|
</html>
 |