Phyo Thiha

Results 5 comments of Phyo Thiha

@jscasca For clarity, I just paste full configuration in Vue Component. ``` import Editor from "@tinymce/tinymce-vue"; const apiKey = process.env.API_KEY_TINYMCE_EDITOR; function example_image_upload_handler(blobInfo, success, failure, progress) { console.log("success", success); console.log("failure", failure);...

@jscasca This code is using images_upload_url and images_upload_credentials property ``` import Editor from "@tinymce/tinymce-vue"; const apiKey = process.env.API_KEY_TINYMCE_EDITOR; const imageConfig = { images_upload_url: process.env.API_BASE_URL + "/api/file-upload", images_upload_credentials: true, }; const...

@jscasca You mean the image uploader function works with your local environment? Ok I'll try with only Vue without using the UI framework. I do not have a sample repo...

@jscasca I set it up on [codesandbox](https://codesandbox.io/s/tender-burnell-f0tgu1?file=/src/pages/Index.vue) with image uploader function contains outputting function result.

@jscasca Doing `images_upload_credentials: true` didn't pass along credentials such as cookies or authorization headers. I tested it out with vanilla Vue. If I want to pass credentials, I will have...