Receive csv using plumber through a POST requestSending json file in curl and receiving it in R using plumberGet file through API call (R & plumber)Plumber - mounted routersPlumber R package - post request not workingServe arbitrary image files through plumberServe downloadable files with plumberR Plumber posting a PDFaccept nested json using post in plumber and accepts few arguments plumberUsing 'new' in Plumberellipsis usage with plumber

At which point can a system be compromised when downloading archived data from an untrusted source?

Was Jacobi the first to notice the ambiguity in the partial derivatives notation? And did anyone object to his fix?

Does the Intel 8085 CPU use real memory addresses?

Is it ethical for a company to ask its employees to move furniture on a weekend?

Why is Katakana not pronounced Katagana?

Why don't commercial aircraft adopt a slightly more seaplane-like design to allow safer ditching in case of emergency?

Can you perfectly wrap a cube with this blocky shape?

Do dragons smell of lilacs?

Does this sentence I constructed with my junior high school latin work? I write online advertising and want to come off as snobby as possible

Why does FFmpeg choose 10+20+20 ms instead of an even 16 ms for 60 fps GIF images?

Vienna To Graz By Rail

What "fuel more powerful than anything the West (had) in stock" put Laika in orbit aboard Sputnik 2?

What is the point of a constraint expression on a non-templated function?

Coverting list of string into integers and reshaping the original list

Wordplay subtraction paradox

How can I help our ranger feel special about her beast companion?

My credit card has no magnetic stripe. Is this a problem in the USA?

Wordplay addition paradox

Is passive Investigation essentially truesight against illusions?

Where are the rest of the Dwarves of Nidavellir?

Is this Android phone Android 9.0 or Android 6.0?

What happens if there is no space for entry stamp in the passport for US visa?

Cauchy reals and Dedekind reals satisfy "the same mathematical theorems"

Which GPUs to get for Mathematical Optimization (if any...)?



Receive csv using plumber through a POST request


Sending json file in curl and receiving it in R using plumberGet file through API call (R & plumber)Plumber - mounted routersPlumber R package - post request not workingServe arbitrary image files through plumberServe downloadable files with plumberR Plumber posting a PDFaccept nested json using post in plumber and accepts few arguments plumberUsing 'new' in Plumberellipsis usage with plumber






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I am looking to send a csv file to a database as someone posts the file using their VBA code (VBA has a 80 character limit for their api calls, so they need to upload a csv to the server for me to parse and check)



To do this, I aim to use plumber and a POST request. My knowledge is a bit limited on how to structure the api to do this. Below is a rough example of how I see it happening. Is this even possible to do with plumber?



# api_main.R

library(plumber)

#* @awesomeAPI Simple API to upload csv

#* Return status on received csv
#* @param req
#* @post /upload
function(req)
df <- read.csv(req$body)
if(all(c("A", "B", "C", "D") %in% names(df)))
return(data.frame(msg = "Not all columns available", status = 418))
else
# upload data to DB here
return(data.frame(msg = "OK", status = 200))




Start the service:



plumber::plumb("api_main.R")$run(port = 5762)









share|improve this question

















  • 1





    Should work with req$postBody c.f. stackoverflow.com/a/51945300/8416610

    – Ralf Stubner
    Mar 26 at 12:56







  • 1





    You probably need to convert req$postBody from json format to normal.

    – Rushabh
    Mar 26 at 14:08

















0















I am looking to send a csv file to a database as someone posts the file using their VBA code (VBA has a 80 character limit for their api calls, so they need to upload a csv to the server for me to parse and check)



To do this, I aim to use plumber and a POST request. My knowledge is a bit limited on how to structure the api to do this. Below is a rough example of how I see it happening. Is this even possible to do with plumber?



# api_main.R

library(plumber)

#* @awesomeAPI Simple API to upload csv

#* Return status on received csv
#* @param req
#* @post /upload
function(req)
df <- read.csv(req$body)
if(all(c("A", "B", "C", "D") %in% names(df)))
return(data.frame(msg = "Not all columns available", status = 418))
else
# upload data to DB here
return(data.frame(msg = "OK", status = 200))




Start the service:



plumber::plumb("api_main.R")$run(port = 5762)









share|improve this question

















  • 1





    Should work with req$postBody c.f. stackoverflow.com/a/51945300/8416610

    – Ralf Stubner
    Mar 26 at 12:56







  • 1





    You probably need to convert req$postBody from json format to normal.

    – Rushabh
    Mar 26 at 14:08













0












0








0








I am looking to send a csv file to a database as someone posts the file using their VBA code (VBA has a 80 character limit for their api calls, so they need to upload a csv to the server for me to parse and check)



To do this, I aim to use plumber and a POST request. My knowledge is a bit limited on how to structure the api to do this. Below is a rough example of how I see it happening. Is this even possible to do with plumber?



# api_main.R

library(plumber)

#* @awesomeAPI Simple API to upload csv

#* Return status on received csv
#* @param req
#* @post /upload
function(req)
df <- read.csv(req$body)
if(all(c("A", "B", "C", "D") %in% names(df)))
return(data.frame(msg = "Not all columns available", status = 418))
else
# upload data to DB here
return(data.frame(msg = "OK", status = 200))




Start the service:



plumber::plumb("api_main.R")$run(port = 5762)









share|improve this question














I am looking to send a csv file to a database as someone posts the file using their VBA code (VBA has a 80 character limit for their api calls, so they need to upload a csv to the server for me to parse and check)



To do this, I aim to use plumber and a POST request. My knowledge is a bit limited on how to structure the api to do this. Below is a rough example of how I see it happening. Is this even possible to do with plumber?



# api_main.R

library(plumber)

#* @awesomeAPI Simple API to upload csv

#* Return status on received csv
#* @param req
#* @post /upload
function(req)
df <- read.csv(req$body)
if(all(c("A", "B", "C", "D") %in% names(df)))
return(data.frame(msg = "Not all columns available", status = 418))
else
# upload data to DB here
return(data.frame(msg = "OK", status = 200))




Start the service:



plumber::plumb("api_main.R")$run(port = 5762)






r plumber






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 26 at 9:14









Hanjo Jo'burg OdendaalHanjo Jo'burg Odendaal

8131 gold badge7 silver badges23 bronze badges




8131 gold badge7 silver badges23 bronze badges







  • 1





    Should work with req$postBody c.f. stackoverflow.com/a/51945300/8416610

    – Ralf Stubner
    Mar 26 at 12:56







  • 1





    You probably need to convert req$postBody from json format to normal.

    – Rushabh
    Mar 26 at 14:08












  • 1





    Should work with req$postBody c.f. stackoverflow.com/a/51945300/8416610

    – Ralf Stubner
    Mar 26 at 12:56







  • 1





    You probably need to convert req$postBody from json format to normal.

    – Rushabh
    Mar 26 at 14:08







1




1





Should work with req$postBody c.f. stackoverflow.com/a/51945300/8416610

– Ralf Stubner
Mar 26 at 12:56






Should work with req$postBody c.f. stackoverflow.com/a/51945300/8416610

– Ralf Stubner
Mar 26 at 12:56





1




1





You probably need to convert req$postBody from json format to normal.

– Rushabh
Mar 26 at 14:08





You probably need to convert req$postBody from json format to normal.

– Rushabh
Mar 26 at 14:08












0






active

oldest

votes










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55353430%2freceive-csv-using-plumber-through-a-post-request%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes




Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.



















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55353430%2freceive-csv-using-plumber-through-a-post-request%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현