Placeholder Image

字幕表 動画を再生する

AI 自動生成字幕
  • (gentle music)

    (優しい音楽)

  • - Unique to Google, it's possible to write your own code

    - Googleならではの、独自のコードを書くことが可能です

  • and execute it within the Google Ads platform

    を、Google Adsのプラットフォームで実行します。

  • to automate your campaigns.

    キャンペーンを自動化するために

  • Let's see how this works.

    その様子をご覧ください。

  • Let me click here into Tools and Settings.

    ここで「ツールと設定」をクリックしてみましょう。

  • Under BULK ACTIONS, we're going to go to Scripts.

    BULK ACTIONS」の「Scripts」に移動します。

  • This is where you can see all the different scripts

    ここで、さまざまなスクリプトを確認することができます。

  • that you have running, as well as how often they run,

    と、その頻度。

  • and whether they're enabled.

    と有効になっているかどうかを確認します。

  • You can also click in Options

    オプション]をクリックすることもできます。

  • and then choose to Run the script or Edit it.

    をクリックし、「スクリプトを実行する」または「スクリプトを編集する」を選択します。

  • We're going to create a new script,

    新しいスクリプトを作成します。

  • and we're going to use this script right here.

    で、このスクリプトをここで使うことにします。

  • Don't worry too much if you don't know how to code.

    コードが分からなくても、あまり心配しないでください。

  • This is really just to show you how the platform works,

    これは本当に、プラットフォームの仕組みを知っていただくためのものです。

  • so you can work with the developer

    開発者と一緒に仕事ができるように

  • to write scripts for you.

    がスクリプトを書いてくれる。

  • Every script has a few different sections.

    どんな台本にも、いくつかのセクションがあります。

  • So first is the function, and that is called main.

    そこでまず、関数ですが、これをmainと呼びます。

  • It's always called main

    常にメインと呼ばれる

  • because that's what Google looks for to execute the script.

    というのも、Googleがスクリプトを実行するために探しているものだからです。

  • Within the function, you have this section here,

    この機能の中に、このセクションがありますね。

  • which is the main script.

    があり、これがメインスクリプトとなります。

  • First thing you look at is the selection.

    まず最初に見るのは、品揃えです。

  • So this is selecting all of the campaigns

    つまり、これはすべてのキャンペーンを選択していることになります

  • within the AdsApp, which is the Google API.

    を、Google APIであるAdsAppの中に入れています。

  • And then we're going to order them by cost descending

    そして、コストの降順で並べます

  • for the date range of yesterday,

    を昨日までの日付範囲で表示します。

  • and we're going to limit this query to 10

    で、このクエリを10個に制限することにします。

  • and then just get all of those campaigns.

    そして、それらのキャンペーンをすべて取得すればいいのです。

  • The logger is something that allows you

    ロガーは、以下のようなものです。

  • to print to the console so you can debug

    をコンソールに出力し、デバッグできるようにします。

  • and see what the script has actually done for you.

    をクリックし、実際にスクリプトがどのように動作したかを確認することができます。

  • Then this final section here is a loop, a while loop.

    そして、この最後の部分は、ループ、whileループです。

  • So it's saying while the campaigns have next,

    だから、キャンペーンが次があるうちにと言っているのです。

  • meaning when there is another campaign in the list,

    リストに他のキャンペーンがあるときを意味します。

  • then select that campaign and then log

    を選択し、そのキャンペーンを選択し、ログ

  • the cost for that campaign yesterday.

    昨日、そのキャンペーンにかかった費用です。

  • Okay, so don't worry too much if you didn't follow along.

    さて、それでは、ついていけなかった人もあまり心配しないでください。

  • This is just how a script typically looks.

    これはあくまで一般的なスクリプトの姿です。

  • So if I copy this script and then go to Scripts again,

    そこで、このスクリプトをコピーして、再度スクリプトにアクセスすると。

  • click New Script.

    新規スクリプト]をクリックします。

  • So now I have my unnamed script

    これで無名のスクリプトができました

  • I need to copy and paste in here.

    ここにコピー&ペーストしたいんだけど

  • And again, make sure that it's in this function main.

    そしてまた、この関数mainの中にあることを確認します。

  • The next thing I need to do is AUTHORIZE,

    次に必要なのは「AUTHORIZE」です。

  • and then click Allow.

    をクリックし、[許可]をクリックします。

  • That's going to let you run the script ads yourself.

    これで、自分でスクリプト広告を実行できるようになりますね。

  • Once you have a script,

    スクリプトを用意したら

  • you can preview the script to see what it would do.

    をクリックすると、スクリプトをプレビューして、その動作を確認することができます。

  • So let's click PREVIEW.

    では、PREVIEWをクリックしてみましょう。

  • You can see that this script is running here.

    ここで、このスクリプトが実行されていることがわかります。

  • If we go to the LOGS,

    LOGSに行くと。

  • we can actually see what it's printed out.

    プリントアウトされたものを実際に見ることができるのです。

  • So as expected, first, it printed out 10 campaigns

    で、予想通り、まず、10のキャンペーンがプリントアウトされました。

  • with most costs yesterday,

    昨日、ほとんどのコストで

  • and then for every campaign with cost descending

    そして、コストの降順にあるすべてのキャンペーンについて

  • printed out the cost.

    をプリントアウトした。

  • So we can see here US Agency Types.

    ここで、USエージェンシーの種類を確認することができます。

  • It was the campaign that spent the most yesterday.

    昨日、一番お金をかけたキャンペーンでした。

  • We only scratched the surface here,

    ここでは、まだ表面を削ったに過ぎません。

  • but you can imagine there are infinite possibilities

    とはいえ、無限の可能性があることは想像に難くない

  • for automating your work with the Google Ads scripts.

    Google Adsのスクリプトで作業を自動化するためのものです。

  • So many possibilities for automation,

    自動化の可能性はたくさんありますね。

  • it can be hard to know what to start with.

    何から始めたらいいのかわからない。

  • In this lesson, we're going to cover

    このレッスンでは、次のことを学びます。

  • some of the most common types of scripts.

    最も一般的なスクリプトの種類をいくつか紹介します。

  • So the first one we're going to look at is a Link Checker.

    そこで、最初に紹介するのは「リンクチェッカー」です。

  • What this does is when you configure it,

    これは何をするかというと、設定するときです。

  • it looks through your whole account,

    は、あなたのアカウント全体に目を通します。

  • checks the links that you're linking to from your ads,

    は、広告からリンクしているリンクをチェックします。

  • and then makes sure that they're not broken.

    を、壊していないことを確認する。

  • If it leads to a 404 or error page,

    404ページやエラーページにつながる場合。

  • then it's going to flag that immediately to you,

    というフラグを立てます。

  • so you can fix your campaigns

    キャンペーンを修正することができます。

  • and not waste your advertising budget.

    広告予算を無駄にしないためにも

  • In order to use these scripts,

    これらのスクリプトを使用するためには

  • you just need to scroll down to the bottom,

    一番下までスクロールしてください。

  • and you can see the whole source code here.

    で、ソースコード全体はこちらでご覧いただけます。

  • You can copy it here and then paste that

    ここにコピーして、それを貼り付けることができます

  • into your Google Ads scripts.

    をGoogle Adsのスクリプトに追加してください。

  • Follow the instructions for set up and you should be good.

    セットアップの説明書に従って行えば、問題ありません。

  • The next one we're going to look at

    次にご紹介するのは

  • is the Account Anomaly Detector.

    は、Account Anomaly Detectorです。

  • What this does is tell you if performance

    この機能により、パフォーマンスがあるかどうかを知ることができます。

  • has shifted drastically up or down in specific campaigns.

    が、特定のキャンペーンで大きく上下に変動しています。

  • Again, you can configure this how you like.

    ここでも好きなように設定できます。

  • There are lots of different interesting features.

    さまざまな面白い機能がたくさんあります。

  • If you follow this set of instructions

    このセットの指示に従うと

  • and copy and paste the script,

    をクリックし、スクリプトをコピー&ペーストしてください。

  • it's going to work in your account.

    あなたのアカウントで動作するようになります。

  • The final one we're going to look at is the Ad Customizer.

    最後にご紹介するのは、「広告カスタマイザー」です。

  • So this one's a bit more advanced.

    だから、これはちょっと上級者向けなんです。

  • What this allows you to do is to dynamically update

    これによってできることは、動的に更新することです。

  • values in your ad text.

    の値を広告テキストに含めることができます。

  • So for example, if you were selling concert tickets,

    だから例えば、コンサートのチケットを売っていたとしたら。

  • you could automatically update the prices

    自動的に価格を更新することができます。

  • as they change in your product feed.

    を、商品フィードで変更することができます。

  • This one is a bit more difficult to set up,

    こちらは少し設定が難しいです。

  • but Google has written some pretty interesting information

    が、Googleがなかなか面白い情報を書いている

  • about how this works.

    の仕組みについてです。

  • If you can follow along, great.

    ついてこれるなら、最高です。

  • If not, then I recommend talking to a developer

    そうでない場合は、開発者に相談することをお勧めします

  • who can help you.

    を、お手伝いします。

  • If you start with these three scripts,

    この3つのスクリプトで始めると

  • you already have a pretty good foundation to build on

    土台が出来上がったね

  • for further Google Ads automation.

    は、Google Adsの自動化をさらに進めるためのものです。

  • (casual music)

    (カジュアルミュージック)

(gentle music)

(優しい音楽)

字幕と単語
AI 自動生成字幕

ワンタップで英和辞典検索 単語をクリックすると、意味が表示されます