-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement JSONPlaceholder REST APIs gRPC Methods #40
Comments
/bounty 50$ |
💎 $50 bounty • Tailcall Inc.Steps to solve:
🙏 Thank you for contributing to tailcallhq/rust-grpc!
|
I guess I had a PR for this |
/attempt #40
|
/attempt #40
|
Note The user @kaf-lamed-beyt is already attempting to complete issue #40 and claim the bounty. We recommend checking in on @kaf-lamed-beyt's progress, and potentially collaborating, before starting a new solution. |
💡 @Gmin2 submitted a pull request that claims the bounty. You can visit your bounty board to reward. |
Posts
REST Endpoints:
/posts
: Retrieve all posts. Accepts filter in Query Param like https://jsonplaceholder.typicode.com/posts?userId=1/posts/{id}
: Retrieve a single post by ID./posts
: Create a new post./posts/{id}
: Update a post by ID./posts/{id}
: Delete a post by ID.gRPC Service Definition:
Users
REST Endpoints:
/users
: Retrieve all users. accepts queryparams like https://jsonplaceholder.typicode.com/users?id=1&id=2/users/{id}
: Retrieve a single user by ID./users
: Create a new user./users/{id}
: Update a user by ID./users/{id}
: Delete a user by ID.gRPC Service Definition:
.proto
files containing these service and message definitions.The text was updated successfully, but these errors were encountered: