我正在为自己的app创建仪表板。我使用Discord登录到我的网站。我有打开弹出窗口的代码。但是,按Authorise
后,它会重定向到我的网站-应当如此。但它会在弹出窗口中重定向。我希望弹出窗口关闭并重定向到我的网站,而不是显示在我的弹出窗口中。注意:discord在重定向中发送“代码”查询/参数。我怎样才能做到这一点?还有其他网站可以执行我想要的操作,但是它们的代码被混淆了。例如:https://mee6.xyz可以满足我的需求。
这是我按钮的代码:
.clouds-flat-button {
position: relative;
vertical-align: top;
width: 50%;
height: 60px;
padding: 0;
font-size: 22px;
color:#454545;
text-align: center;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
background: #ecf0f1;
border: 0;
border-bottom: 2px solid #dadedf;
cursor: pointer;
-webkit-box-shadow: inset 0 -2px #dadedf;
box-shadow: inset 0 -2px #dadedf;
}
.clouds-flat-button:active {
top: 1px;
outline: none;
-webkit-box-shadow: none;
box-shadow: none;
}
<button class="clouds-flat-button" onclick="javascript:void window.open('https://discordapp.com/oauth2/authorize?client_id=299946067934445568&redirect_uri=https%3A%2F%2Faklox.tk%2Fdashboard%3Fq%3Doa2&response_type=code&scope=identify%20email%20guilds%20guilds.join','1539418736354','width=350,height=500,toolbar=0,menubar=0,location=0,status=1,scrollbars=1,resizable=0,left=0,top=0');return false;">Login With Discord</button>