我的网址中有一个非法字符,我认为它是“|”
堆栈跟踪
04-19 23:08:02.220: E/AndroidRuntime(17068): Caused by: java.lang.IllegalArgumentException: Illegal character in query at index 76: https://graph.facebook.com/150205375156742/feed?access_token=520625188052604|GsCYVGBJKs5N_O1AX9XrrsulrWc
我经历了一些以前提出的问题,到目前为止我已经尝试了这两种解决方案:
1) tried to replace | with %7C or %20
2) safeUrl = URLEncoder.encode("https://graph.facebook.com/150205375156742/feed?access_token=520625188052604|GsCYVGBJKs5N_O1AX9XrrsulrWc", "UTF-8");
它们都不适合我。