Passing blob as argument from Command link

Hey there,

I have a type as below
public type BlobRequest = {
** metadata : ?Blob;**
** };**

And function with the argument as below
public shared(msg) func getBlobData(request : BlobRequest)

How i can call “getBlobData” in command line

dfx canister call helloblob getBlobData

Thanks

This should help:

1 Like

Someone mentioned using stdin to push the value in, because the command line is limited to one megabyte and if you’re trying to push in a 2 MB chunk you’re a bit out of luck. I don’t know Bash well enough to know how you could point your parameters input to a file.

2 Likes