অ্যাপ পরিবহন নিরাপত্তা
সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
অ্যাপ ট্রান্সপোর্ট সিকিউরিটি (ATS) হল একটি গোপনীয়তা বৈশিষ্ট্য যা সুরক্ষিত সংযোগ প্রয়োগ করে। এটি নতুন অ্যাপের জন্য ডিফল্টরূপে সক্ষম।
নিম্নোক্ত লগ বার্তাটি প্রদর্শিত হয় যখন একটি নন-এটিএস সম্মত অ্যাপ HTTP ব্যবহার করে একটি বিজ্ঞাপন পরিবেশনের চেষ্টা করে:
অ্যাপ ট্রান্সপোর্ট সিকিউরিটি একটি ক্লিয়ারটেক্সট HTTP (http://) রিসোর্স লোড অবরুদ্ধ করেছে কারণ এটি অনিরাপদ। অস্থায়ী ব্যতিক্রমগুলি আপনার অ্যাপের Info.plist
ফাইলে কনফিগার করা যেতে পারে।
ATS সীমাবদ্ধতা অক্ষম করতে, আপনার অ্যাপের Info.plist
এ নিম্নলিখিত ব্যতিক্রমগুলি যোগ করুন:
-
NSAllowsArbitraryLoadsForMedia
-
NSAllowsArbitraryLoadsInWebContent
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoadsForMedia</key>
<true/>
<key>NSAllowsArbitraryLoadsInWebContent</key>
<true/>
</dict>
আপনার বিজ্ঞাপনগুলি ATS দ্বারা প্রভাবিত না হয় তা নিশ্চিত করতে NSAllowsArbitraryLoadsForMedia
এবং NSAllowsArbitraryLoadsInWebContent
কীগুলির প্রয়োজন৷
অন্য কিছু উল্লেখ না করা থাকলে, এই পৃষ্ঠার কন্টেন্ট Creative Commons Attribution 4.0 License-এর অধীনে এবং কোডের নমুনাগুলি Apache 2.0 License-এর অধীনে লাইসেন্স প্রাপ্ত। আরও জানতে, Google Developers সাইট নীতি দেখুন। Java হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
2025-08-27 UTC-তে শেষবার আপডেট করা হয়েছে।
[null,null,["2025-08-27 UTC-তে শেষবার আপডেট করা হয়েছে।"],[[["\u003cp\u003eApp Transport Security (ATS) enforces secure connections by default and may block ads served over HTTP.\u003c/p\u003e\n"],["\u003cp\u003eIf your app is impacted, add \u003ccode\u003eNSAllowsArbitraryLoadsForMedia\u003c/code\u003e and \u003ccode\u003eNSAllowsArbitraryLoadsInWebContent\u003c/code\u003e exceptions to your \u003ccode\u003eInfo.plist\u003c/code\u003e file to disable ATS restrictions for media and web content, ensuring your ads are delivered.\u003c/p\u003e\n"]]],[],null,["# App Transport Security\n\n[App Transport Security\n(ATS)](//developer.apple.com/library/prerelease/ios/technotes/App-Transport-Security-Technote/)\nis a privacy feature that enforces secure connections. It's enabled by default\nfor new apps.\n\nThe following log message appears when a non-ATS compliant app attempts to serve\nan ad using HTTP:\n\u003e App Transport Security has blocked a cleartext HTTP (http://)\n\u003e resource load since it is insecure. Temporary exceptions can be\n\u003e configured in your app's `Info.plist` file.\n\nTo disable ATS restrictions, add the following exceptions to your app's\n`Info.plist`:\n\n- `NSAllowsArbitraryLoadsForMedia`\n- `NSAllowsArbitraryLoadsInWebContent`\n\n \u003ckey\u003eNSAppTransportSecurity\u003c/key\u003e\n \u003cdict\u003e\n \u003ckey\u003eNSAllowsArbitraryLoadsForMedia\u003c/key\u003e\n \u003ctrue/\u003e\n \u003ckey\u003eNSAllowsArbitraryLoadsInWebContent\u003c/key\u003e\n \u003ctrue/\u003e\n \u003c/dict\u003e\n\nThe `NSAllowsArbitraryLoadsForMedia` and `NSAllowsArbitraryLoadsInWebContent`\nkeys are required to make sure your ads are not impacted by ATS."]]