Are Base64 Urls safer than just regular urls. For example, a rest url like this:
“/user/12?status=true” less safe than “34kalist4u9mF0aWdhYmxlIGdlbmVyYXRpb24leGNlZWRzIHRo”?
Are Base64 Urls safer than just regular urls. For example, a rest url like
Share
Not really. Base64 is not an encryption in any way. It is simply an encoding used to represent binary data in ASCII.
If you want your requests to be more secure, use SSL instead.