我试图将Facebook整合到我的Flask应用中。 Facebook SDK for JavaScript无缝且非常易于使用。但是我在传递数据服务器端时遇到了麻烦(我真正需要的只是用户的Facebook ID)。这是我的准系统烧瓶应用程序:
from flask import Flask, render_template, session, request, redirect, url_for
app = Flask(__name__)
app.config['SECRET_KEY'] = '123'
@app.route('/')
def index():
print('cookies', request.cookies)
return render_template('get_fb_cookies.html')
@app.route('/set_key')
def set_key():
session['key'] = 'value'
return redirect(url_for('index'))
if __name__ == '__main__':
app.run(debug=True)
这是我的准系统模板,允许用户登录/注销(并利用facebook api的各种其他部分)客户端:
<!doctype html>
<html lang="en">
<body>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : '<app-id>',
cookies : true,
version : 'v2.10' // use graph api version 2.10
});
FB.getLoginStatus(function(response) {
statusChangeCallback(response);
});
};
// Load the SDK asynchronously
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js"; // minified version version
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
// This is called with the results from from FB.getLoginStatus().
function statusChangeCallback(response) {
if (response.status === 'connected') {
FB.api('/me', function(response){
console.log('Successful login for: ' + response.name);
console.log('ID: ' + response.id)
});
} else {
console.log('Not connected.')
}
};
</script>
<div id="fb-root"></div>
<h1>Get Facebook Cookies</h1>
<div class="fb-login-button" data-max-rows="1" data-size="medium" data-button-type="login_with" data-show-faces="false" data-auto-logout-link="true"></div>
</body>
</html>
阅读此SO question,我似乎需要访问Cookie服务器端,但request.cookies
只是给我flask.session
设置的Cookie。也许我需要更改Cookie facebook设置的域。现在,其中约有十个设置为.facebook.com
。我想我需要将它们设置为localhost
(或者我的服务器正在运行的任何地方)。
这是可行的还是我需要考虑一种不同的方法来访问用户的Facebook ID服务器端?
答案 0 :(得分:1)
我建议您使用statusChangeCallback