Jak korzystać z uwierzytelniania w usłudze Firebase na Twitterze za pomocą polecenia Natywne?Jak korzystać z uwierzytelniania w usłudze Firebase na Twitterze za pomocą polecenia Natywne?
Próbowałem zarówno z poniższego kodu w odniesieniu do https://www.firebase.com/docs/web/guide/login/twitter.html
var Firebase = require("firebase");
var App = React.createClass({
render: function() {
return (
<View>
<Text onPress={this._handlePress}>
Twitter login
</Text>
</View>
);
},
_handlePress: function() {
var myApp = new Firebase("https://<myapp>.firebaseio.com");
myApp.authWithOAuthRedirect("twitter", function(error) {
if (error) {
console.log("Login Failed!", error);
} else {
// We'll never get here, as the page will redirect on success.
}
});
}
});
i
var Firebase = require("firebase");
var App = React.createClass({
render: function() {
return (
<View>
<Text onPress={this._handlePress}>
Twitter login
</Text>
</View>
);
},
_handlePress: function() {
var myApp = new Firebase("https://<myapp>.firebaseio.com");
myApp.authWithOAuthPopup("twitter", function(error, authData) {
if (error) {
console.log("Login Failed!", error);
} else {
console.log("Authenticated successfully with payload:", authData);
}
});
}
});
Gdy używam authWithOAuthRedirect
, wystąpił błąd jak
undefined is not an object (evaluating 'window.location.href')
Gdy używam authWithOAuthPopup
, nic się nie stało.
Jak mogę rozwiązać pytanie? A może to nie jest możliwe?
Do tego ostatniego punktu dobrym miejscem do rozpoczęcia może być demonstracja logowania do Firebase dla iOS: https://github.com/firebase/login-demo-ios Ale nie będzie to dla omdlenie w sercu. –
Dziękuję za pomoc. Przestałem używać React Native i próbuję używać Ionic. – okmttdhr
@FrankvanPuffelen Czy to prawda w przypadku autoryzacji e-mail/PW, a także w przypadku Native React z Firebase? –