🐨

Google AdSenseの審査が通らないので、AppRouterのNextアプリ内で忍者AdMaxを使ってみた

2024/12/01に公開

概要

最近個人開発で急ピッチで開発しているのですが、いっこうにGoogle AdSenseの審査が通らないので、忍者AdMaxをNextJSで作ったアプリに導入してみました。

https://zenn.dev/wakuwaku/articles/7c71b9ce02ba0a

https://zenn.dev/wakuwaku/articles/63ed72cdfa6761

https://zenn.dev/wakuwaku/articles/41298b66b79506

https://zenn.dev/wakuwaku/articles/0bf4c40f93cb31

広告の導入方法

忍者AdMaxで広告の設定をしてidを取得します。

(下記のIDは) https://adm.shinobi.jp/o/あなたのIDの箇所になります。

"use client";
import React, { useEffect } from "react";

const Ad = () => {
  const adMaxId = "あなたの忍者のID";
  useEffect(() => {
    const script = document.createElement("script");
    script.src = "https://adm.shinobi.jp/st/t.js";
    script.async = true;
    document.body.appendChild(script);
    globalThis.admaxads = globalThis.admaxads || [];
    globalThis.admaxads.push({ admax_id: adMaxId, type: "switch" });

    return () => {
      document.body.removeChild(script);
    };
  }, []);

  return (
    <>
      <div className="mt-8 flex justify-center">
        <div className={`admax-switch inline-block`} data-admax-id={adMaxId} />
      </div>
    </>
       
  );
};

export default Ad;

Discussion