Difference between get and post in request in angular basic level interview question?

--

get vs post

Photo by Yannik Mika on Unsplash

Angular http client service have get option for request where we can sent data in url only while in post we can send in body. post is more secure than get request. So before deciding architecture of app it is Solution Architect who decide to based on user requirement and secuirty and other factor which api we will request as get and post.

--

--