Support Forum Google ログイン ブランディング警告について

translate このフォーラムは日本語でも利用できます。ログインして、言語設定を変更してください。

Stand on the shoulders of Giants! Forums Customer Support / カスタマーサポート Google ログイン ブランディング警告について

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #467
    @smartraex
    Participant

    ご担当者様

    Gianismを使用させていただいて、Googleログインを実装しています。
    Googleログインはできるようになったのですが、
    Google Cloud Platformのアプリ登録の中で、
    ユーザ数の制限を撤廃するために、OAuth同意画面の申請を行っています。

    Googleの承認プロセスの中で、ブランディング観点で訂正指示を受領しました。
    Googleのブランドガイドラインに沿うようにとの指摘かと思うのですが、
    以下のページに記載のロゴ等に変更することは可能でしょうか?

    https://developers.google.com/identity/branding-guidelines

    #468
    Fumiki
    Keymaster

    ブランディング審査が厳格になったのですね。これはキャッチアップできていませんでした。
    取り急ぎ以下のフィルターフックを利用することでボタンのマークアップおよびデザインは変更できます。

    add_filter( 'gianism_link_html', function( $markup, $href, $text, $is_register, $service_name, $context ) {
        if ( 'google' === $service_name ) {
             $markup = 'Googleのガイドラインに剃ったリンク';
        }
        return $markup;
    } );
    

    https://github.com/fumikito/Gianism/blob/master/app/Gianism/Service/AbstractService.php#L452-L477

    #469
    @smartraex
    Participant

    ありがとうございます。
    こちらで対応してみます。

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.
SPONSORED LINK
SPONSORED LINK