Aliyun OSS, opens the image address can not be previewed, directly downloaded, has been bound to the oss domain name, and the record has been approved, is there any great god to point out! Thank you!
Aliyun OSS, opens the image address can not be previewed, directly downloaded, has been bound to the oss domain name, and the record has been approved, is there any great god to point out! Thank you!
Java SDK solves the following
String endpoint = "http://oss-cn-hangzhou.aliyuncs.com";
String accessKeyId = "<yourAccessKeyId>";
String accessKeySecret = "<yourAccessKeySecret>";
OSS ossClient = new OSSClientBuilder().build(endpoint, accessKeyId, accessKeySecret);
InputStream inputStream = new URL("https://www.aliyun.com/").openStream();
// ContentType
ObjectMetadata objectMetadata = new ObjectMetadata();
objectMetadata.setContentType("image/jpg");
ossClient.putObject("<yourBucketName>", "<yourObjectName>", inputStream, objectMetadata);
ossClient.shutdown();
check Content-Disposition
and content-type
if you encounter the same problem, we are also trying to solve it. However, the common method is to add '.JPG', but we are three-terminal parallel, so we cannot add a suffix. We have not thought of a reasonable solution yet
when uploading (putObject), just input objectMetadata, to set the appropriate contentType. ObjectMetadata.setContentType ("image/jpg");
Previous: How to decompile linux python into source code
Next: You can't put an entire html document in console, can you?
I know that there are a lot of questions on the Internet, and I have tried a lot of methods, but I still can t find out what the problem is. 1. In vue, when a cross-domain request is made through axios, the cookie returned by the server cannot be set...
What is the principle of cross-domain proxy proxyTable in 1.node? 2. When I do not set CORS on both the browser and the server, I can cross-domain by setting proxytable. Does this go against the original intention of the same origin policy? ps: woul...
use webpack to open the front page on the local localhost:8080 port proxy is configured like this: devServer: { port: 8080, contentBase: . dist , proxy: { abc : { target: http: 122.79...
static page, you need to call the backend API (the backend and frontend are not put together and need to be cross-domain). The backend requires token to write the request API in header. How to write the query code? ...
call Baidu Map ip to obtain the location API, and the data has been returned successfully, but a cross-domain error has been reported, resulting in the callback method unable to be executed. Ask for advice Failed to load https: api.map.baidu.com ...
after nginx is configured to access cross-domain access, get,post can be accessed, but the put method is not allowed the specific configuration is as follows add_header Access-Control-Allow-Origin *; location { if ($request_method = OPTIONS ...
401 error message this is how the agent is configured my port is localhost:8000, and the background port is localhost:9999,. I don t know if the proxy has passed. Always 401 error. Ask the boss for a solution. ...
because I need to load the skey value of QQ, I introduced the login of iframe connecting to QQ in the page, and then after the login is successful, there will be a value of skey under the qq.com of cookice. So how can I get this cookice out? used: :do...
currently I have an interface with the address a.com and the page requests b.com . Using CORS to cross-domain, the data is fine and can be returned normally, but how to pass cookie under a.com to b.com ? The request is using fetch , and creden...
Today, I wrote an H5 that generates a poster on WeChat, in which a poster needs to get the user s avatar and draw it on canvas. The avatar was obtained, and the attribute crossOrigin = anonymous was added to the picture when loading. There was a pr...
the rookie wants to build a server with node express, but the cross-domain problem has not been solved. When requesting JSON data, I was at a loss because the pre-request could not pass the permission control and could not complete the cross-domain proc...
under the https protocol, the post request is cross-domain, the get request is not cross-domain, and the http protocol is fine. related codes ...
I hope that by setting up the ajax request, the ajax request can carry the cookie information. I will add as I said online. beforeSend: function(xhr) { xhr.withCredentials = true; } refer to https: www.cnblogs.com hello.; the...
ajax: ![clipboard.png]( img bV9nQe look forward to pointing out my mistakes ...
We are currently doing a case of uploading pictures and videos, but we need to compress it before uploading. If anyone has a good plan, please let us know ....
< H1 > Preface < H1 > the login page for filling in the information is local and made by myself; the authenticated page is not mine, on an uncontrollable server < H1 > traditional form submission < H1 > main.html $.ajax({ type: POST , ...
because the video is large, the upload progress should be displayed, so there are two steps: 1 users select the temporary directory where the files are uploaded to ECS in the browser, and cron cleans the directory regularly; 2 users fill in the video ...
http page failed to send https request with ajax. Is there a good solution? ...
for example, I have a cookie under test.com now I want to send this cookie to a localhost, is there any way? ...
add before (app) {.} to the devServer of webpack.dev.conf.js to deal with cross-domain problems. Get the data normally in the development environment. But the error is reported after compilation and packaging, so how does this code go into the configura...