This is achieved by surrounding a key with double quotes, or by escaping the dot character with a backslash. For example, given the JSON ``` { "www.example.com/uid": "myuid" } ``` Previously, there was no way to access this value. The dots would make the parser try to access `json["www"]["example"]["com/uid"]`. Now, this value can be accessed by using a `oauth2_json_user_id_path` like: ``` www\.example\.com/uid ``` or alternatively: ``` "www.example.com/uid" ``` |
||
---|---|---|
.. | ||
plugin_spec.rb |