Skip to content

Commit

Permalink
Fixed some formatting in Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
TlhanGhun committed Jan 8, 2014
1 parent 0bab9ec commit dd02c0a
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions README.md 100644 → 100755
Expand Up @@ -48,16 +48,13 @@ Here is how it works by the example in Menere:
public void add_new_account()
{
//RSSharp.Feedly.Configuration.activate_sandbox();
RSSharp.Feedly.ApiCalls.Authentication_window auth_window =
new RSSharp.Feedly.ApiCalls.Authentication_window("*********",
"**********", "http://yourRedirectUri");
RSSharp.Feedly.ApiCalls.Authentication_window auth_window = new RSSharp.Feedly.ApiCalls.Authentication_window("*********", "**********", "http://yourRedirectUri");
auth_window.AuthSuccess += auth_window_AuthSuccess;
auth_window.Show();
auth_window.startAuthorization();
}

void auth_window_AuthSuccess(object sender,
RSSharp.Feedly.ApiCalls.Authentication_window.AuthEventArgs e)
void auth_window_AuthSuccess(object sender, RSSharp.Feedly.ApiCalls.Authentication_window.AuthEventArgs e)
{
if (e.success)
{
Expand Down

0 comments on commit dd02c0a

Please sign in to comment.