ওয়েব অ্যাপস এবং API এক্সিকিউটেবল ম্যানিফেস্ট রিসোর্স
সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
রিসোর্স কনফিগারেশনগুলি ওয়েব অ্যাপ এবং API এক্সিকিউটেবলগুলিকে সংজ্ঞায়িত করতে ব্যবহৃত হয়৷
ওয়েবঅ্যাপ
স্ক্রিপ্ট প্রজেক্টের ওয়েব অ্যাপ কনফিগারেশন, যেটি শুধুমাত্র তখনই ব্যবহৃত হয় যদি প্রোজেক্টটিকে একটি ওয়েব অ্যাপ হিসেবে স্থাপন করা হয়।
JSON প্রতিনিধিত্ব |
---|
{
"access": string,
"executeAs": string
} |
ক্ষেত্র |
---|
access | string ওয়েব অ্যাপ চালানোর অনুমতির স্তর। বৈধ সেটিংস নিম্নলিখিত: -
MYSELF ইঙ্গিত করে যে শুধুমাত্র ব্যবহারকারী যে অ্যাপটি স্থাপন করেছে তারা এটি চালাতে পারে। -
DOMAIN শুধুমাত্র একই ডোমেনের ব্যবহারকারীদের নির্দেশ করে যেটি স্থাপনকারী ব্যবহারকারী এটি চালাতে পারে৷ -
ANYONE লগ ইন করা কোনো ব্যবহারকারীকে নির্দেশ করে৷ -
ANYONE_ANONYMOUS কোনো ব্যবহারকারীকে নির্দেশ করে, এমনকি লগ ইন না করলেও৷
|
executeAs | string যে পরিচয়ের অধীনে ওয়েব অ্যাপটি কার্যকর করে। বৈধ সেটিংস নিম্নলিখিত: -
USER_ACCESSING নির্দেশ করে যে ওয়েব অ্যাপটি ব্যবহারকারী যখন এটি অ্যাক্সেস করছে তখন এটি চলে৷ -
USER_DEPLOYING নির্দেশ করে যে ওয়েব অ্যাপটি ব্যবহার করা হয়েছে এমন ব্যবহারকারী হিসাবে চলে৷
|
এক্সিকিউশনএপিআই
স্ক্রিপ্ট প্রকল্পের API এক্সিকিউটেবল কনফিগারেশন। এটি শুধুমাত্র তখনই ব্যবহৃত হয় যদি প্রকল্পটি API সম্পাদনের জন্য স্থাপন করা হয়।
JSON প্রতিনিধিত্ব |
---|
{
"access": string
} |
ক্ষেত্র |
---|
access | string API থেকে স্ক্রিপ্ট চালানোর অনুমতি কার আছে তা নির্ধারণ করে। বৈধ সেটিংস নিম্নলিখিত: -
MYSELF নির্দেশ করে যে স্ক্রিপ্টটি স্থাপন করেছে শুধুমাত্র সেই ব্যবহারকারীই এটি চালাতে পারে। -
DOMAIN শুধুমাত্র একই ডোমেনের ব্যবহারকারীদের নির্দেশ করে যেটি স্থাপনকারী ব্যবহারকারী এটি চালাতে পারে৷ -
ANYONE লগ ইন করা কোনো ব্যবহারকারীকে নির্দেশ করে৷ -
ANYONE_ANONYMOUS কোনো ব্যবহারকারীকে নির্দেশ করে, এমনকি লগ ইন না করলেও৷
|
অন্য কিছু উল্লেখ না করা থাকলে, এই পৃষ্ঠার কন্টেন্ট Creative Commons Attribution 4.0 License-এর অধীনে এবং কোডের নমুনাগুলি Apache 2.0 License-এর অধীনে লাইসেন্স প্রাপ্ত। আরও জানতে, Google Developers সাইট নীতি দেখুন। Java হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
2025-07-24 UTC-তে শেষবার আপডেট করা হয়েছে।
[null,null,["2025-07-24 UTC-তে শেষবার আপডেট করা হয়েছে।"],[[["\u003cp\u003eResource configurations define how web apps and APIs execute within a project.\u003c/p\u003e\n"],["\u003cp\u003eWeb app configurations control access levels (MYSELF, DOMAIN, ANYONE, ANYONE_ANONYMOUS) and execution identity (USER_ACCESSING, USER_DEPLOYING).\u003c/p\u003e\n"],["\u003cp\u003eAPI executable configurations manage access permissions for running scripts via the API, using similar access levels as web apps.\u003c/p\u003e\n"]]],[],null,["# Web apps and API executables manifest resource\n\nThe resource configurations used to define web apps and API executables.\n\nWebapp\n------\n\nThe script project's web app configuration, which is only used if the project\nis deployed as a web app.\n\n| JSON representation |\n|-------------------------------------------------------|\n| ```text { \"access\": string, \"executeAs\": string } ``` |\n\n| Fields ||\n|-------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `access` | `string` The levels of permission for running the web app. The valid settings are the following: - `MYSELF` indicates only the user who deployed the app can run it. - `DOMAIN` indicates only users in the same domain as the deploying user can run it. - `ANYONE` indicates any user who is logged in. - `ANYONE_ANONYMOUS` indicates any user, even if not logged in. |\n| `executeAs` | `string` The identity under which the web app executes. The valid settings are the following: - `USER_ACCESSING` indicates the web app runs as the user accessing it. - `USER_DEPLOYING` indicates the web app runs as the user who deployed it. |\n\nExecutionApi\n------------\n\nThe script project's API executable configuration. This is only used if the\nproject is deployed for API execution.\n\n| JSON representation |\n|----------------------------------|\n| ```text { \"access\": string } ``` |\n\n| Fields ||\n|----------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `access` | `string` Determines who has permission to run the script from the API. The valid settings are the following: - `MYSELF` indicates only the user who deployed the script can run it. - `DOMAIN` indicates only users in the same domain as the deploying user can run it. - `ANYONE` indicates any user who is logged in. - `ANYONE_ANONYMOUS` indicates any user, even if not logged in. |"]]