earningbirds
  • 어닝버드 소개
    • 어닝버드 시작하기
  • 어닝버드 메이커 가이드
    • 설문 제작하기
    • 태스크 제작하기
    • 결과 확인하기
  • SDK - Javascript
    • 시작하기
    • API 레퍼런스
Powered by GitBook
On this page

Was this helpful?

  1. SDK - Javascript

시작하기

HTML 파일 내에 아래의 스크립트를 삽입합니다.

<script>
    (function () { var w = window; if (!w.Earningbirds) { w.Earningbirds = {}; } w.Earningbirds.project = "PROJECT_KEY"; function l() { if (w.EarningbirdsInitialized) { return; } w.EarningbirdsInitialized = true; var s = document.createElement("script"); s.type = "text/javascript"; s.async = true; s.src = "https://app.earningbirds.com/plugin/1.0.0/eb-plugin-web.js"; var x = document.getElementsByTagName("head")[0]; if (x) { x.appendChild(s); } } if (document.readyState === "complete") { l(); } else { w.addEventListener("DOMContentLoaded", l); w.addEventListener("load", l); } })();
</script>
Previous결과 확인하기NextAPI 레퍼런스

Last updated 7 months ago

Was this helpful?