3

I am doing an internship under a professor and he wants me to build a system which manages login/signup and licensing (of the products) system and license check. And for that he wants me to create REST API! I am just starting with backend development so I don't know much but from what i know it seems bad idea to implement this via rest api.

So can you guys tell me if rest api way is good or not? And if not how to implement these functionalities?

Comments
  • 2
    I don't see why this would be bad?
    Sure you'd need some security checks in place for it to work smooth and safely, but other then that it isn't wrong.

    Did he also ask to make it run in a docker container? 🤡
  • 1
    I also don't see any reason why REST API cannot be applied in this case.

    How to do REST API? Well it depends on which programming language you are familiar with. The concept is the same but based on different languages, there are different tools/frameworks/libraries you can use to implement it.
  • 0
    @rootshell @CurseMeSlowly can you point me in the direction about how to implement it with security. I will be using .NET core.(I'm little familiar with java based apis but this i have to do with .NET core which I just started to learn.
  • 1
  • 1
    If you want to bootstrap the project and want to use python, you can you Django-Rest-Frameworks which you have up and running in like 10 minutes.
  • 0
    @CurseMeSlowly thank you!
Add Comment