Unity के लिए उपलब्ध Cloud Storage से जुड़ी गड़बड़ियां मैनेज करना
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
कभी-कभी ऐप्लिकेशन बनाते समय, चीज़ें प्लान के मुताबिक नहीं होती हैं और कोई गड़बड़ी हो जाती है.
अगर आपको कोई समस्या आ रही है, तो गड़बड़ी की जानकारी देखें और जानें कि गड़बड़ी के मैसेज में क्या लिखा है.
अगर आपने गड़बड़ी का मैसेज देख लिया है और आपके पास Cloud Storage Security Rules हैं, लेकिन अब भी गड़बड़ी ठीक नहीं हो रही है, तो हमारे सहायता पेज पर जाएं और हमें बताएं कि हम आपकी मदद कैसे कर सकते हैं.
गड़बड़ी के मैसेज मैनेज करना
गड़बड़ियां होने की कई वजहें हो सकती हैं. जैसे, फ़ाइल मौजूद न होना, उपयोगकर्ता के पास फ़ाइल को ऐक्सेस करने की अनुमति न होना या उपयोगकर्ता के फ़ाइल अपलोड करने की प्रोसेस को रद्द करना.
समस्या का पता लगाने और गड़बड़ी को ठीक करने के लिए, यहां Firebase.Storage.StorageException
गड़बड़ियों की पूरी सूची दी गई है. ये गड़बड़ियां हमारा क्लाइंट दिखाएगा. साथ ही, यह भी बताया गया है कि ये गड़बड़ियां कैसे हो सकती हैं.
नाम |
वजह |
ErrorUnknown |
कोई अनजानी गड़बड़ी हुई. |
ErrorObjectNotFound |
दिए गए रेफ़रंस पर कोई ऑब्जेक्ट मौजूद नहीं है. |
ErrorBucketNotFound |
Cloud Storage के लिए कोई बकेट कॉन्फ़िगर नहीं की गई है. |
ErrorProjectNotFound |
Cloud Storage के लिए कोई प्रोजेक्ट कॉन्फ़िगर नहीं किया गया है. |
ErrorQuotaExceeded |
आपकी Cloud Storage बकेट का कोटा खत्म हो गया है. अगर आपने Spark प्लान लिया है, तो इस्तेमाल के हिसाब से शुल्क चुकाने वाले Blaze प्लान पर अपग्रेड करें. अगर आपने पहले से ही ब्लेज़ प्लान लिया है, तो Firebase की सहायता टीम से संपर्क करें.
अहम जानकारी: 1 अक्टूबर, 2025 से, Cloud Storage का इस्तेमाल करने के लिए, ब्लेज़ प्लान लेना ज़रूरी होगा. भले ही, डिफ़ॉल्ट बकेट का इस्तेमाल किया जा रहा हो. |
ErrorNotAuthenticated |
उपयोगकर्ता की पुष्टि नहीं हुई है. पुष्टि करें और फिर से कोशिश करें. |
ErrorNotAuthorized |
उपयोगकर्ता को अनुरोध की गई कार्रवाई करने की अनुमति नहीं है. अपने नियमों की जांच करके पक्का करें कि वे सही हैं. |
ErrorRetryLimitExceeded |
किसी कार्रवाई (अपलोड, डाउनलोड, मिटाना वगैरह) के लिए तय की गई समयसीमा खत्म हो गई है. फिर से अपलोड करके देखें. |
ErrorInvalidChecksum |
क्लाइंट पर मौजूद फ़ाइल का चेकसम, सर्वर को मिली फ़ाइल के चेकसम से मेल नहीं खाता. फिर से अपलोड करके देखें. |
ErrorCanceled |
उपयोगकर्ता ने कार्रवाई रद्द कर दी है. |
जब तक कुछ अलग से न बताया जाए, तब तक इस पेज की सामग्री को Creative Commons Attribution 4.0 License के तहत और कोड के नमूनों को Apache 2.0 License के तहत लाइसेंस मिला है. ज़्यादा जानकारी के लिए, Google Developers साइट नीतियां देखें. Oracle और/या इससे जुड़ी हुई कंपनियों का, Java एक रजिस्टर किया हुआ ट्रेडमार्क है.
आखिरी बार 2025-08-08 (UTC) को अपडेट किया गया.
[null,null,["आखिरी बार 2025-08-08 (UTC) को अपडेट किया गया."],[],[],null,["\u003cbr /\u003e\n\nSometimes when you're building an app, things don't go as planned and an\nerror occurs.\n\nWhen in doubt, check the error returned, and see what the error message says.\n| **Note:** By default, a Cloud Storage for Firebase bucket requires Firebase Authentication to perform any action on the bucket's data or files. You can change your Firebase Security Rules for Cloud Storage to [allow unauthenticated access for specific situations](/docs/storage/security/rules-conditions#public). However, for most situations, we strongly recommend [restricting access and setting up robust security rules](/docs/storage/security/get-started) (especially for production apps). Note that if you use Google App Engine and have a default Cloud Storage bucket with a name format of `*.appspot.com`, you may need to consider [how your security rules impact access to App Engine files](/docs/storage/gcp-integration#security-rules-and-app-engine-files).\n\nIf you've checked the error message and have Cloud Storage Security Rules that allow your\naction, but are still struggling to fix the error, visit our\n[Support page](/support) and let us know how we can help.\n\nHandle Error Messages\n\nThere are a number of reasons why errors may occur, including the file\nnot existing, the user not having permission to access the desired file, or the\nuser cancelling the file upload.\n\nTo properly diagnose the issue and handle the error, here is a full list of\nall the [`Firebase.Storage.StorageException`](/docs/reference/unity/class/firebase/storage/storage-exception)\nerrors our client will raise, and how they can occur.\n\n| Name | Reason |\n|---------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `ErrorUnknown` | An unknown error occurred. |\n| `ErrorObjectNotFound` | No object exists at the specified reference. |\n| `ErrorBucketNotFound` | No bucket is configured for Cloud Storage. |\n| `ErrorProjectNotFound` | No project is configured for Cloud Storage. |\n| `ErrorQuotaExceeded` | Quota on your Cloud Storage bucket has been exceeded. If you're on the Spark pricing plan, consider upgrading to the [pay-as-you-go Blaze pricing plan](/pricing). If you're already on the Blaze pricing plan, reach out to Firebase Support. **Important** : Starting October 1, 2025, the [Blaze pricing plan will be *required* to use Cloud Storage](/docs/storage/faqs-storage-changes-announced-sept-2024), even default buckets. |\n| `ErrorNotAuthenticated` | User is unauthenticated. Authenticate and try again. |\n| `ErrorNotAuthorized` | User is not authorized to perform the requested action. Check your rules to ensure they are correct. |\n| `ErrorRetryLimitExceeded` | The maximum time limit on an operation (upload, download, delete, etc.) has been exceeded. Try uploading again. |\n| `ErrorInvalidChecksum` | File on the client does not match the checksum of the file received by the server. Try uploading again. |\n| `ErrorCanceled` | User canceled the operation. |"]]