本文介绍了如何获取 Python 用户的 Facebook ID?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在开发一个小的 Python 代码,我需要知道如何自动执行从 Facebook 个人资料的 URL 到您的 ID 的过程.

I am developing a small python code and I need to know how I can automate the process of going from the URL of a Facebook profile to your ID.

例如,索尼的 facebook 是https://facebook.com/Sony"但ID 为56232316996"(https://facebook.com/56232316996)(通过https://www.findmyfbid.com).

For example, the facebook of Sony is "https://facebook.com/Sony" but the ID is "56232316996" (https://facebook.com/56232316996) (vía https://www.findmyfbid.com).

如何使用 python 代码自动执行此过程?

How can I automate this process using python code?

非常感谢.

推荐答案

我最近也在尝试做同样的事情.这个简单的程序可能适合您.

I've try to do the same just recently. This simple program probably works for you.

import requests
def get_fbid(fb_url):
    URL = "https://findmyfbid.com/"
    PARAMS = {'url': fb_url}
    try:
        r = requests.post(url = URL, params= PARAMS)
        return r.json().get("id")
    except Exception:
        return 0

这篇关于如何获取 Python 用户的 Facebook ID?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-30 09:55