I got this error and I didn't find the best explication on google search
Method [validateResuired] does not exist
I wrote a code as a TP to upload photos with laravel5
Related
Trying to delete image in upload folder.
axios.delete(`${backendUrl}/uploads/files/${id}`})
The code above returns an error
DELETE http://localhost:1337/api/uploads/71 405 (Method Not Allowed)
Can anybody help to understand how to delete upload properly?
Does anyone know the endpoint for getting all of the iamges you uploaded to the media libray in one request?
Im using next js with strapi and need a way to grab all of the images from the media library but there doesnt seem to be any documentation on this
/api/upload
GET /api/upload/files Get a list of files
GET /api/upload/files/:id Get a specific file
POST /api/upload Upload files
DELETE /api/upload/files/:id Delete a file
Reference
https://docs.strapi.io/developer-docs/latest/plugins/upload.html#configuration
GET /upload/files
You can read more on the docs
Can I upload files as attachments to my Socrata Dataset using soda-ruby?
I saw an example that used a method named upload_file
When I tried that, I received the following error
undefined method error.
Hi I'M new to windows phone Application development i'm working on how to get access the files from google drive using rest api i got the response in the response i got all the information like .pdf,.docs,mp3,mp4 ,folders etc...and the response is coming slow from the web for that is there any solution that.I should get response only that contains images and folders so that app will fast and accuracy... Thanks in Advance.
https://www.googleapis.com/drive/v2/files?q=mimeType contains 'image/jpeg'
The above link is for getting only images in this way according to mime type we can get the files rather than getting all files at a time
I am trying to get data of my Facebook photos using:
[self.facebook requestWithGraphPath:#"me/photos" andDelegate:self]
but the result I am getting is empty data.
I am getting friends list with this:
[self.facebook requestWithGraphPath:#"me/friends" andDelegate:self]
Has anybody encountered this?
You should call me/permissions to see what permissions the access token has prior to making your call to the photos. Ensure it has user_photos turned on before making that call.