Skip to content

Commit

Permalink
declared NetGraphRequest as static
Browse files Browse the repository at this point in the history
  • Loading branch information
geralexgr committed Oct 13, 2017
1 parent c8de6ce commit 0a3c254
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Net.Facebook.Graph/NetGraphRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@

namespace Net.Facebook.Graph
{
public class NetGraphRequest
public static class NetGraphRequest
{

public async Task<Token> GetToken(string id, string secret)
public async static Task<Token> GetToken(string id, string secret)
{
try
{
Expand All @@ -25,7 +25,7 @@ public async Task<Token> GetToken(string id, string secret)



public string CreateTokenUrl(string id, string secret)
public static string CreateTokenUrl(string id, string secret)
{
var url = "https://graph.facebook.com/oauth/access_token?" +
"client_id=" + id + "&client_secret=" + secret +
Expand Down

0 comments on commit 0a3c254

Please sign in to comment.