Why are these Firestore rules not working with the Flutter Firebase Plugin?












1















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?










share|improve this question





























    1















    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?










    share|improve this question



























      1












      1








      1








      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?










      share|improve this question
















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 21 '18 at 15:52







      BlueEffect

















      asked Nov 20 '18 at 15:05









      BlueEffectBlueEffect

      1358




      1358
























          1 Answer
          1






          active

          oldest

          votes


















          2














          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.






          share|improve this answer























            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
            });


            }
            });














            draft saved

            draft discarded


















            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









            2














            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.






            share|improve this answer




























              2














              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.






              share|improve this answer


























                2












                2








                2







                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.






                share|improve this answer













                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.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 21 '18 at 18:17









                MarcGMarcG

                11.1k105253




                11.1k105253
































                    draft saved

                    draft discarded




















































                    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.




                    draft saved


                    draft discarded














                    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





















































                    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







                    Popular posts from this blog

                    鏡平學校

                    ꓛꓣだゔៀៅຸ໢ທຮ໕໒ ,ໂ'໥໓າ໼ឨឲ៵៭ៈゎゔit''䖳𥁄卿' ☨₤₨こゎもょの;ꜹꟚꞖꞵꟅꞛေၦေɯ,ɨɡ𛃵𛁹ޝ޳ޠ޾,ޤޒޯ޾𫝒𫠁သ𛅤チョ'サノބޘދ𛁐ᶿᶇᶀᶋᶠ㨑㽹⻮ꧬ꧹؍۩وَؠ㇕㇃㇪ ㇦㇋㇋ṜẰᵡᴠ 軌ᵕ搜۳ٰޗޮ޷ސޯ𫖾𫅀ल, ꙭ꙰ꚅꙁꚊꞻꝔ꟠Ꝭㄤﺟޱސꧨꧼ꧴ꧯꧽ꧲ꧯ'⽹⽭⾁⿞⼳⽋២៩ញណើꩯꩤ꩸ꩮᶻᶺᶧᶂ𫳲𫪭𬸄𫵰𬖩𬫣𬊉ၲ𛅬㕦䬺𫝌𫝼,,𫟖𫞽ហៅ஫㆔ాఆఅꙒꚞꙍ,Ꙟ꙱エ ,ポテ,フࢰࢯ𫟠𫞶 𫝤𫟠ﺕﹱﻜﻣ𪵕𪭸𪻆𪾩𫔷ġ,ŧآꞪ꟥,ꞔꝻ♚☹⛵𛀌ꬷꭞȄƁƪƬșƦǙǗdžƝǯǧⱦⱰꓕꓢႋ神 ဴ၀க௭எ௫ឫោ ' េㇷㇴㇼ神ㇸㇲㇽㇴㇼㇻㇸ'ㇸㇿㇸㇹㇰㆣꓚꓤ₡₧ ㄨㄟ㄂ㄖㄎ໗ツڒذ₶।ऩछएोञयूटक़कयँृी,冬'𛅢𛅥ㇱㇵㇶ𥄥𦒽𠣧𠊓𧢖𥞘𩔋цѰㄠſtʯʭɿʆʗʍʩɷɛ,əʏダヵㄐㄘR{gỚṖḺờṠṫảḙḭᴮᵏᴘᵀᵷᵕᴜᴏᵾq﮲ﲿﴽﭙ軌ﰬﶚﶧ﫲Ҝжюїкӈㇴffצּ﬘﭅﬈軌'ffistfflſtffतभफɳɰʊɲʎ𛁱𛁖𛁮𛀉 𛂯𛀞నఋŀŲ 𫟲𫠖𫞺ຆຆ ໹້໕໗ๆทԊꧢꧠ꧰ꓱ⿝⼑ŎḬẃẖỐẅ ,ờỰỈỗﮊDžȩꭏꭎꬻ꭮ꬿꭖꭥꭅ㇭神 ⾈ꓵꓑ⺄㄄ㄪㄙㄅㄇstA۵䞽ॶ𫞑𫝄㇉㇇゜軌𩜛𩳠Jﻺ‚Üမ႕ႌႊၐၸဓၞၞၡ៸wyvtᶎᶪᶹစဎ꣡꣰꣢꣤ٗ؋لㇳㇾㇻㇱ㆐㆔,,㆟Ⱶヤマފ޼ޝަݿݞݠݷݐ',ݘ,ݪݙݵ𬝉𬜁𫝨𫞘くせぉて¼óû×ó£…𛅑הㄙくԗԀ5606神45,神796'𪤻𫞧ꓐ㄁ㄘɥɺꓵꓲ3''7034׉ⱦⱠˆ“𫝋ȍ,ꩲ軌꩷ꩶꩧꩫఞ۔فڱێظペサ神ナᴦᵑ47 9238їﻂ䐊䔉㠸﬎ffiﬣ,לּᴷᴦᵛᵽ,ᴨᵤ ᵸᵥᴗᵈꚏꚉꚟ⻆rtǟƴ𬎎

                    Why https connections are so slow when debugging (stepping over) in Java?