Reputation: 35
When I authenticate the app to connect to Yammer, if the redirect_uri
contains the space, for example:
redirect_uri="http://www.example.com/test url/auth"
Yammer cannot redirect uri and show a wrong page. The page shows:
We're sorry, but something went wrong.
Anyone can help?
Upvotes: 1
Views: 1126
Reputation: 35
I used %20 instead of space, and then used escape() to encode the url,like this: redirect_uri=escape("http://www.example.com/test%20url/auth"); It worked fine.
Upvotes: 0