bradleywhite2014 / Dapp

0 stars 0 forks source link

Facebook Login #1

Open bradleywhite2014 opened 8 years ago

bradleywhite2014 commented 8 years ago

Facebook login doesn't do anything right now.

grahamsinger commented 8 years ago

Impediment please revise.

schwarzington commented 8 years ago

Confused as to what the issue is. Please provide a gif.

grahamsinger commented 8 years ago

20160412-205139_capture

schwarzington commented 8 years ago

What is this, a gif for ants?

bradleywhite2014 commented 8 years ago

I'm unable to deduce the current issue. Can you please provide more information? @grahamsinger

bradleywhite2014 commented 8 years ago

Functionality seems to be working fine.

grahamsinger commented 8 years ago

OK I'll reopen if I see it again.

schwarzington commented 8 years ago

Who was this CR'ed by?

bradleywhite2014 commented 8 years ago

Good point...

bradleywhite2014 commented 8 years ago

<FBLogin style={{ marginBottom: 10, }} permissions={["email","user_friends"]} onLogin={function(data){ console.log("Logged in!"); console.log(data); self.setState({ user : data.credentials }); self.navigator.replace({id: 'interestScreen', authData: self.state}); }} onLogout={function(){ console.log("Logged out."); self.setState({ user : null }); }} onLoginFound={function(data){ console.log("Existing login found."); console.log(data); self.setState({ user : data.credentials }); self.navigator.replace({id: 'interestScreen', authData: self.state}); }} onLoginNotFound={function(){ console.log("No user logged in."); self.setState({ user : null }); }} onError={function(data){ console.log("ERROR"); console.log(data); }} onCancel={function(){ console.log("User cancelled."); }} onPermissionsMissing={function(data){ console.log("Check permissions!"); console.log(data); }}

@schwarzington please advise. I'm assuming you can read that just fine.