如何使用描述和标题等元数据上传图像

时间:2017-10-18 19:59:48

标签: image post xamarin .net-core image-uploading

我目前正在编写一个WebApi端点,用于接受带有相关描述和标题的图像上传。我希望能够在一个帖子中发送此信息,而不是在后续调用中发送图像然后发送元数据。

发送此邮件的客户端是使用Xamarin编写的移动应用程序。

在互联网上搜索我努力做任何方向来做这种事情,虽然我确信它是可能的。

任何帮助或指示都将不胜感激。

1 个答案:

答案 0 :(得分:2)

使用CLOUDINARY

使用简单的api将图像上传到云端

var accessToken = event.session.user.accessToken;
var params = {
    IdentityPoolId: "{identity_pool_id}",
    Logins : {
        'cognito-idp.us-east-1.amazonaws.com/{user_pool_id}' : accessToken
    }
};

AWS.config.region = 'us-east-1';
AWS.config.credentials = new AWS.CognitoIdentityCredentials(params);
    AWS.config.credentials.get(function(err) {
    if (err) {
        console.log(err);
    } else {
        console.log('success');
        console.log("Cognito Identity Id: " + AWS.config.credentials.identityId);
    }
});

The DotNet SDK is here

and a tutorial to add metadata along