Skip to content

Instantly share code, notes, and snippets.

@junojisan
Last active August 29, 2015 14:04
Show Gist options
  • Save junojisan/110982564ee03254aa2e to your computer and use it in GitHub Desktop.
Save junojisan/110982564ee03254aa2e to your computer and use it in GitHub Desktop.
public with sharing class OAuthInitiateController {
// 1.接続アプリケーションの「コンシューマ鍵」の値を設定
public static final String CLIENT_ID = '<client_id>';
// 2.接続アプリケーションの「コンシューマの秘密」の値を設定
public static final String CLIENT_SECRET = '<client_secret>';
// 3.接続アプリケーションの「コールバックURL」の値を設定
public static final String CALLBACK_URL = '<callback_url';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment