1

I got this command from an online tool and it is supposed to be

base64 test.jpg | curl -d @- \ "https://detect.roboflow.com/sidepanel-new/1?api_key=[MYAPIKEY]"

I am not sure why it isn't working

Brad Larson
  • 170,088
  • 45
  • 397
  • 571
ba_
  • 15
  • 2
  • 8

1 Answers1

1

Looks like the backslash in that command was meant to escape a newline. But since this was put all in one line it's not necessary.

If that's not the issue, please post the error message your received.

Brad Dwyer
  • 6,305
  • 8
  • 48
  • 68