3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

FirebaseHosting + CloudFunctionsでクライアントのIPを取得する方法

Last updated at Posted at 2020-05-02

複雑な家庭の事情でどうしてもfirebaseを使いつつクライアントのIPアドレスを取得しなくてはならなかったのでメモ。

前提として、フロントはNUXTでつくってます。

バックエンド(CloudFunctions側)

/functions/index.js
const functions = require("firebase-functions");
const admin = require("firebase-admin");
admin.initializeApp(functions.config().firebase);

exports.getIp = functions.https.onCall((data, context) => {
  const clientIp = context.rawRequest.headers['x-appengine-user-ip'];
  return clientIp;
});
  • firebase内でのリクエストなのでfunctions.https.onCall()を使用
  • onCall((data, context)
    • dataにはリクエスト時に投げた値が入りますが、今回は何も投げません
    • contextにはリクエストする側の認証情報が入ります
    • 詳しくは公式説明で
  • context.rawRequest.headers['x-appengine-user-ip']でIPが取得できます
  • リクエストヘッダーの値についての詳しい情報も公式説明で

フロントエンド(NUXT側)

/pages/index.vue
  created() {
    const getIp = firebase.functions().httpsCallable("getIp");
    getIp().then((response) => {
      console.log(response)
    });
   },
  • httpsCallableで関数を指定
  • ページ読み込んだらすぐに確認できるようcreatedに書いてます
3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?