Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialMUZ140028 Charlton Sibanda
5,615 Pointschallenge 2
Now, save currentUserId in the ParseInstallation variable using the put() method. Use the key "userId".
please help um stuck on this one
import android.app.Activity;
import android.os.Bundle;
import com.parse.ParseInstallation;
import com.parse.ParseUser;
public class LoginActivity extends Activity {
/*
* Some code has been omitted for brevity!
* This method gets called upon a successful login.
*/
public void updateParseInstallation() {
String currentUserId = ParseUser.getCurrentUser().getObjectId();
ParseInstallation installation = ParseInstallation.getCurrentInstallation();
installation.put("userId", ParseUser.getCurrentUserId());
}
}
import android.app.Activity;
import android.os.Bundle;
import com.parse.ParseInstallation;
import com.parse.ParseQuery;
public class InviteActivity extends Activity {
/*
* Some code has been omitted for brevity!
* This method gets called when an invitation is sent.
*/
public void sendPushNotifications(String playerId) {
ParseQuery<ParseInstallation> pushQuery;
}
}
3 Answers
Steve Hunter
57,712 PointsRight - got it.
String currentUserId = ParseUser.getCurrentUser().getObjectId();
ParseInstallation installation;
installation = ParseInstallation.getCurrentInstallation();
installation.put("userId", currentUserId);
Hope that makes sense!
MUZ140028 Charlton Sibanda
5,615 Pointsi got it thanks.....
Steve Hunter
57,712 PointsI haven't done this course yet but will in the future, I'm sure.
However, in your line, installation.put("userId", ParseUser.getCurrentUserId());
the second parameter has already been resolved above and stored in currentUserID
.
Could your line be amended slightly to look like:
installation.put("userId", currentUserID);