Rapid account: Kuba Sawulski

Kuba Sawulski / kubasaw

Node JSPython
게시된 API 없음
이 사용자는 아직 API를 게시하지 않았습니다.

토론

16
Title
Created at (Click to sort ascending)
A
2
Hello, We sent you information in a private message. Regards, Kuba Sawulski from LinQR Mon 12:25 26/6/23
A
1
You can monitor your usage in two ways: 1. With HTTP response headers. In our case: **X-RapidAPI-QR-Codes-limit** and **X-RapidAPI-QR-Codes-remaining** 2. Via Developer Dashboard Those are RapidAPI hub features. You can read more at: https://docs.rapidapi.com/docs/api-pricing Regards, Kuba Sawulski from LinQR Thu 5:33 8/6/23
A
3
I need to know, which programming language/framework do you use. If you provide this info, we will try to prepare snippet. Kuba Tue 5:16 6/6/23
A
3
I need to know, which programming language/framework do you use. If you provide this info, we will try to prepare snippet. Kuba Tue 5:16 6/6/23
A
1
Due to the RapidAPI proxy failure, requests were not routed to our infrastructure for about 5 hours. By now, everything should be fine. We sincerely apologize for the inconvenience, Kuba Sawulski from LinQR Sat 9:25 13/5/23
A
1
Hello, Adding your own logo on the QR Code is one of the basic functionalities of the LinQR API and is very often used by our users. To do this, you can use at least three different approaches: 1. You can send an image directly with a multipart request along with all other QR Code specification. You can do it by calling any of https://qrcode3.p.rapidapi.com/qrcode... endpoints with ``` request body content-type: multipart/form-data field image -> content-type: image/png, image/jpeg, etc. your image field metadata -> content-type: application/json {"data":"QR Code data"} ``` 2. If you have a server where you store your image, you can give us the URL to the image to be placed on the QR Code. This can also be done by calling any of https://qrcode3.p.rapidapi.com/qrcode... endpoint ``` request body content-type: application/json {"data":"QR Code data", "image":{"uri":"http://yourserver.com/someimage.png"}} ``` 3. The most advanced option is to use our cloud to store images. This option is especially recommended when generating a large number of codes. We store images in a high-availability cache system, which allows us to generate codes much faster than with the other two options. This requires two API requests. The first saves the image into our storage via https://qrcode3.p.rapidapi.com/images ``` request body content-type: multipart/form-data field image -> content-type: image/png, image/jpeg, etc. your image response: {"id":"image_identifier", ....} ``` Now you can use your image for any number of consecutive QR Codes. We will keep it until you explicitly request its deletion. You generate the Code with a similar request to any of https://qrcode3.p.rapidapi.com/qrcode... endpoint ``` request body content-type: application/json {"data":"QR Code data", "image":{"uri":"storage://image_identifier"}} ``` For more information, see our documentation at https://linqr.app/docs You can always write us at support@linqr.app in case of any issues. Kuba Sawulski from LinQR Thu 6:55 2/3/23