class-gsc-config.php 506 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * WPSEO plugin file.
  4. *
  5. * @package WPSEO\Admin
  6. */
  7. /**
  8. * Class WPSEO_GSC_Config
  9. */
  10. class WPSEO_GSC_Config {
  11. /**
  12. * @var array
  13. */
  14. public static $gsc = array(
  15. 'application_name' => 'Yoast SEO',
  16. 'client_id' => '395430892738-ushj8aced0cji2j4bkq6bda6felaigb9.apps.googleusercontent.com',
  17. 'client_secret' => 'c2kYgOwMhk1emWxQ3NaA8wOi',
  18. 'redirect_uri' => 'urn:ietf:wg:oauth:2.0:oob',
  19. 'scopes' => array( 'https://www.googleapis.com/auth/webmasters' ),
  20. );
  21. }