php - Error: invalid_request Invalid parameter value for redirect_uri: Uri must consist of printable ASCII characters: -
i created client id , api key in google developer console, given same url in google console , in config file
this url:
i getting error
- that’s error.
error: invalid_request
invalid parameter value redirect_uri: uri must consist of printable ascii characters: localhost:81/moviemuseui/public/login/checklogin
how solve this, can't find problem.
excluded us-ascii characters disallowed within uri syntax:
control = <us-ascii coded characters 00-1f , 7f hexadecimal> space = <us-ascii coded character 20 hexadecimal> delims = "<" | ">" | "#" | "%" | <">
there characters may allowed in uri syntax can cause problems.
"{" | "}" | "|" | "\" | "^" | "[" | "]" | "`"
and following characters absolutely reserved query component , used specific meaning in protocol.
";" | "/" | "?" | ":" | "@" | "&" | "=" | "+" | "$" | ","
Comments
Post a Comment