You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-11-29 22:27:42 +02:00
9 lines
272 B
Plaintext
Vendored
9 lines
272 B
Plaintext
Vendored
Path = "/New/pic.png";
|
|
Token = FunctionParameters["Dropbox_Token"];
|
|
Image = FunctionParameters["Picture"];
|
|
|
|
ImagePath = GetTempFileName("png");
|
|
CopyFile(Image, ImagePath);
|
|
|
|
Result = OPI_Dropbox.UploadFile(Token, ImagePath, Path, True);
|