Make
What this is
Section titled “What this is”There’s no dedicated Dropslate app in Make (Integromat) yet - the HTTP → Make a request module covers everything, the same bearer-token JSON as any other client.
Set up the module
Section titled “Set up the module”- URL:
https://api.dropslate.top/v1/posts, Method:POST. - Headers:
Authorization: Bearer ds_live_...- store it as a Make connection or data store entry, not hardcoded in a scenario someone might copy. - Body type: Raw → JSON, the same payload as the curl scenario.
Chain upload then post
Section titled “Chain upload then post”Same three-step shape as n8n: an HTTP module to POST /media/uploads, a second one to PUT the file’s bytes to the returned uploadUrl (no auth header needed there), then a third to POST /posts with the resulting mediaId.
Common errors
Section titled “Common errors”See Errors for the {code, message, hint} shape - Make’s HTTP module returns the response body as is, so the same code values apply.