Why are these Firestore rules not working with the Flutter Firebase Plugin?
I'm using the following Firebase rules:
service cloud.firestore {
match /databases/{database}/documents {
function signedIn() {
return request.auth.uid != null;
}
match /exampleCollectionName/{exampleDocumentName} {
allow get: if signedIn();
allow write, list: if false;
}
}
}
I want to block get requests for users which are not logged in, and allow it for all the others
(including those logged in as anonymous).
This is my dart code, using the Firebase Flutter plugins:
import 'dart:async';
import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:firebase_core/firebase_core.dart';
Future<void> main() async {
final FirebaseApp app = await FirebaseApp.configure(
name: 'firestoreDatabaseExample',
options: const FirebaseOptions(
googleAppID: 'xxxxxxxx',
apiKey: 'yyyyyyyy',
projectID: 'zzzzzzzz',
),
);
Firestore firestore = Firestore(app: app);
await firestore.settings(timestampsInSnapshotsEnabled: true);
final FirebaseAuth _auth = FirebaseAuth.instance;
await _auth.signOut();
FirebaseUser firebaseUser = await _auth.signInAnonymously();
assert(firebaseUser != null);
assert(firebaseUser.isAnonymous);
assert(!firebaseUser.isEmailVerified);
assert(await firebaseUser.getIdToken() != null);
final FirebaseUser currentUser = await _auth.currentUser();
assert(firebaseUser.uid == currentUser.uid);
DocumentReference docRef =
firestore.collection('exampleCollectionName').document('exampleDocumentName');
await docRef.get().then((documentSnaphot) {
if (documentSnaphot.exists) print('IS WORKING!');
}, onError: (error) {
print(error);
});
}
As you can see above, I log in as anonymous and try to get a document. However, the code returns:
"PlatformException(Error performing get, PERMISSION_DENIED: Missing or insufficient permissions., null)"
Please help, what am I doing wrong?
firebase plugins firebase-authentication flutter google-cloud-firestore
add a comment |
I'm using the following Firebase rules:
service cloud.firestore {
match /databases/{database}/documents {
function signedIn() {
return request.auth.uid != null;
}
match /exampleCollectionName/{exampleDocumentName} {
allow get: if signedIn();
allow write, list: if false;
}
}
}
I want to block get requests for users which are not logged in, and allow it for all the others
(including those logged in as anonymous).
This is my dart code, using the Firebase Flutter plugins:
import 'dart:async';
import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:firebase_core/firebase_core.dart';
Future<void> main() async {
final FirebaseApp app = await FirebaseApp.configure(
name: 'firestoreDatabaseExample',
options: const FirebaseOptions(
googleAppID: 'xxxxxxxx',
apiKey: 'yyyyyyyy',
projectID: 'zzzzzzzz',
),
);
Firestore firestore = Firestore(app: app);
await firestore.settings(timestampsInSnapshotsEnabled: true);
final FirebaseAuth _auth = FirebaseAuth.instance;
await _auth.signOut();
FirebaseUser firebaseUser = await _auth.signInAnonymously();
assert(firebaseUser != null);
assert(firebaseUser.isAnonymous);
assert(!firebaseUser.isEmailVerified);
assert(await firebaseUser.getIdToken() != null);
final FirebaseUser currentUser = await _auth.currentUser();
assert(firebaseUser.uid == currentUser.uid);
DocumentReference docRef =
firestore.collection('exampleCollectionName').document('exampleDocumentName');
await docRef.get().then((documentSnaphot) {
if (documentSnaphot.exists) print('IS WORKING!');
}, onError: (error) {
print(error);
});
}
As you can see above, I log in as anonymous and try to get a document. However, the code returns:
"PlatformException(Error performing get, PERMISSION_DENIED: Missing or insufficient permissions., null)"
Please help, what am I doing wrong?
firebase plugins firebase-authentication flutter google-cloud-firestore
add a comment |
I'm using the following Firebase rules:
service cloud.firestore {
match /databases/{database}/documents {
function signedIn() {
return request.auth.uid != null;
}
match /exampleCollectionName/{exampleDocumentName} {
allow get: if signedIn();
allow write, list: if false;
}
}
}
I want to block get requests for users which are not logged in, and allow it for all the others
(including those logged in as anonymous).
This is my dart code, using the Firebase Flutter plugins:
import 'dart:async';
import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:firebase_core/firebase_core.dart';
Future<void> main() async {
final FirebaseApp app = await FirebaseApp.configure(
name: 'firestoreDatabaseExample',
options: const FirebaseOptions(
googleAppID: 'xxxxxxxx',
apiKey: 'yyyyyyyy',
projectID: 'zzzzzzzz',
),
);
Firestore firestore = Firestore(app: app);
await firestore.settings(timestampsInSnapshotsEnabled: true);
final FirebaseAuth _auth = FirebaseAuth.instance;
await _auth.signOut();
FirebaseUser firebaseUser = await _auth.signInAnonymously();
assert(firebaseUser != null);
assert(firebaseUser.isAnonymous);
assert(!firebaseUser.isEmailVerified);
assert(await firebaseUser.getIdToken() != null);
final FirebaseUser currentUser = await _auth.currentUser();
assert(firebaseUser.uid == currentUser.uid);
DocumentReference docRef =
firestore.collection('exampleCollectionName').document('exampleDocumentName');
await docRef.get().then((documentSnaphot) {
if (documentSnaphot.exists) print('IS WORKING!');
}, onError: (error) {
print(error);
});
}
As you can see above, I log in as anonymous and try to get a document. However, the code returns:
"PlatformException(Error performing get, PERMISSION_DENIED: Missing or insufficient permissions., null)"
Please help, what am I doing wrong?
firebase plugins firebase-authentication flutter google-cloud-firestore
I'm using the following Firebase rules:
service cloud.firestore {
match /databases/{database}/documents {
function signedIn() {
return request.auth.uid != null;
}
match /exampleCollectionName/{exampleDocumentName} {
allow get: if signedIn();
allow write, list: if false;
}
}
}
I want to block get requests for users which are not logged in, and allow it for all the others
(including those logged in as anonymous).
This is my dart code, using the Firebase Flutter plugins:
import 'dart:async';
import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:firebase_core/firebase_core.dart';
Future<void> main() async {
final FirebaseApp app = await FirebaseApp.configure(
name: 'firestoreDatabaseExample',
options: const FirebaseOptions(
googleAppID: 'xxxxxxxx',
apiKey: 'yyyyyyyy',
projectID: 'zzzzzzzz',
),
);
Firestore firestore = Firestore(app: app);
await firestore.settings(timestampsInSnapshotsEnabled: true);
final FirebaseAuth _auth = FirebaseAuth.instance;
await _auth.signOut();
FirebaseUser firebaseUser = await _auth.signInAnonymously();
assert(firebaseUser != null);
assert(firebaseUser.isAnonymous);
assert(!firebaseUser.isEmailVerified);
assert(await firebaseUser.getIdToken() != null);
final FirebaseUser currentUser = await _auth.currentUser();
assert(firebaseUser.uid == currentUser.uid);
DocumentReference docRef =
firestore.collection('exampleCollectionName').document('exampleDocumentName');
await docRef.get().then((documentSnaphot) {
if (documentSnaphot.exists) print('IS WORKING!');
}, onError: (error) {
print(error);
});
}
As you can see above, I log in as anonymous and try to get a document. However, the code returns:
"PlatformException(Error performing get, PERMISSION_DENIED: Missing or insufficient permissions., null)"
Please help, what am I doing wrong?
firebase plugins firebase-authentication flutter google-cloud-firestore
firebase plugins firebase-authentication flutter google-cloud-firestore
edited Nov 21 '18 at 15:52
BlueEffect
asked Nov 20 '18 at 15:05
BlueEffectBlueEffect
1358
1358
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You have to do:
final FirebaseAuth _auth = FirebaseAuth.from(app);
Otherwise you would be signing in to the "default" app configured by the google-services.json
configuration file.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53395899%2fwhy-are-these-firestore-rules-not-working-with-the-flutter-firebase-plugin%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You have to do:
final FirebaseAuth _auth = FirebaseAuth.from(app);
Otherwise you would be signing in to the "default" app configured by the google-services.json
configuration file.
add a comment |
You have to do:
final FirebaseAuth _auth = FirebaseAuth.from(app);
Otherwise you would be signing in to the "default" app configured by the google-services.json
configuration file.
add a comment |
You have to do:
final FirebaseAuth _auth = FirebaseAuth.from(app);
Otherwise you would be signing in to the "default" app configured by the google-services.json
configuration file.
You have to do:
final FirebaseAuth _auth = FirebaseAuth.from(app);
Otherwise you would be signing in to the "default" app configured by the google-services.json
configuration file.
answered Nov 21 '18 at 18:17
MarcGMarcG
11.1k105253
11.1k105253
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53395899%2fwhy-are-these-firestore-rules-not-working-with-the-flutter-firebase-plugin%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown