小编ume*_*mer的帖子

AWS Coginto API,忘记密码操作不会引发 InvalidParameterException,即使既不存在经过验证的电话号码也不存在经过验证的电子邮件

根据文档所述 https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_ForgotPassword.html如果用户尚未验证他的电子邮件或电话号码,则

Auth.forgotPassword(username)
Run Code Online (Sandbox Code Playgroud)

应该返回一些错误消息。如文档中所写

如果验证的电话号码和验证的电子邮件均不存在,则会引发 InvalidParameterException。

但这并没有引发异常,相反,我收到了成功响应。

"CodeDeliveryDetails":{"AttributeName":"email","DeliveryMedium":"EMAIL","Destination":"m***@g***.com"}}
Run Code Online (Sandbox Code Playgroud)

但我没有收到电子邮件。

可能是什么原因?

javascript amazon-web-services reactjs amazon-cognito aws-amplify

7
推荐指数
1
解决办法
1395
查看次数

Ajax数据源(对象):TypeError:f未定义

我正在开发我的ASP.Net Web应用程序,我必须使用Ajax数据源填充HTML表,我正在使用jQuery DataTables插件.

HTML代码:

<table class="table table-striped table-hover table-bordered display" id="example" cellspacing="0" width="100%">
    <thead>
        <tr>
            <th>Prctice Group Risk No
            </th>
            <th>Practice_Group
            </th>
            <th>Risk_Category
            </th>
        </tr>
    </thead>
</table>
Run Code Online (Sandbox Code Playgroud)

JavaScript代码:

$('#example').DataTable({
    "ajax": {
        "dataType": 'json',
        "contentType": "application/json; charset=utf-8",
        "type": "POST",
        "url":"index.aspx/Risky"
    },
    "columns": [
        { "data": "Prctice_Group_Risk_No" },
        { "data": "Practice_Group" },
        { "data": "Risk_Category" }]
});
Run Code Online (Sandbox Code Playgroud)

这是我的Web方法我正在调用获取对象列表的JSON响应

 [WebMethod]
 [ScriptMethod]
    public static string Risky()
    {
        return JsonConvert.SerializeObject(riskList);
    }
Run Code Online (Sandbox Code Playgroud)

来自服务器的JSON响应:

d:"[{"Prctice_Group_Risk_No":1,"Practice_Group":"M&A","Risk_Category":"Conflicts of Interests"},{"Prctice_Group_Risk_No":2,"Practice_Group":"abc","Risk_Category":"Client Care and Communication"}]
Run Code Online (Sandbox Code Playgroud)

Jquery DataTables官方网站http://www.datatables.net/examples/ajax/objects.html中描述的JSON响应对我来说似乎很好 .

但是表中没有填充任何数据,我在Firebug控制台中收到以下错误

TypeError:f未定义

asp.net jquery json datatables webmethod

6
推荐指数
1
解决办法
1万
查看次数

Azure DevOps OAuth2. TF400813: The user is not authorized to access this resource

I have implemented an OAuth2 app for Azure DevOps. My website takes user (User A) to authorize the app using the below URL. Step1

https://app.vssps.visualstudio.com/oauth2/authorize?scope=vso.code_full (skipped the other parameters) 
Run Code Online (Sandbox Code Playgroud)

The above URL works fine and returns with a code+userInfo after user authorization. Now I get an access token passing the code returned from the app using the below API call.

https://app.vssps.visualstudio.com/oauth2/token
Run Code Online (Sandbox Code Playgroud)

I can further fetch all the organizations associated with user's (User A ) account using the below API call …

oauth-2.0 azure-devops azure-devops-rest-api

2
推荐指数
1
解决办法
2158
查看次数