Yes,
I'm following same documentation.
Shall we write the authorizationstate in a file and will read it anytime to refresh it?
71 // Build a generic URL containing the auth code.
72 // This is done here as we cannot modify the DotNetOpenAuth library
73 // and the underlying method only allows parsing an URL as a method
74 // of retrieving the AuthorizationState.
75 string url = "
http://example.com/?code=" + authCode;
76 return ProcessUserAuthorization(new Uri(url), authorizationState);
77 }
What does example.com meaning here?