I can get data from LinkedIn using the URL: `people/~:(id,num-connections,num-connections-capped)?format=json` However when using the library, the URL is escaped to produce: `people/~%3A%28id%2Cnum-connections%2Cnum-connections-capped%29` This is rejected by LinkedIn with: `Could not find person based on: ~%3A%28id%2Cnum-connections%2Cnum-connections-capped%29` Is there a way to prevent the URL being escaped before being used?