简体   繁体   中英

AngularJs php rest API secured communication

I am looking for a secured communication between my AngularJs client and PHP REST API. The communication should be highly secured to match the enterprise standards.

Could you please direct me to the right website? I am even ready to buy a premium code/script

Thanks

You can implement it to use a JWT token for secure communications. On authentication, a token will be generated and issued to the client. This will be sent every time with HTTP requests to the Web API. The API can then authenticate the request based on the token. Please visit JWT Tokens website. You will get samples on how to implement it on bot client and server. It also has some libraries which will help you with the integration on the server side.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM