Policy:User-Agent policy/bn: Difference between revisions

From Wikimedia Foundation Governance Wiki
Content deleted Content added
Created page with "২০১৫ সালের হিসাবে, উইকিমিডিয়া সাইটগুলি কোনও ব্যবহারকারী-এজেন্ট হেডার সেট না করে এমন ক্লায়েন্টদের সমস্ত পৃষ্ঠা দর্শন এবং API অনুরোধ প্রত্যাখ্যান করে না। তাই এই প্রয়োজনীয়তাটি স..."
Created page with "ক্রলার এবং বটগুলির জন্য নীতি যেগুলো উইকিমিডিয়া ওয়েবসাইটগুলিতে অপারেট করতে চায়"
Line 161: Line 161:
== {{int string|See also}} ==
== {{int string|See also}} ==


* [[wikitech:Robot policy|ক্রলার এবং বটগুলির জন্য নীতি]] যেগুলো উইকিমিডিয়া ওয়েবসাইটগুলিতে অপারেট করতে চায়
* <span lang="en" dir="ltr" class="mw-content-ltr">[[wikitech:Robot policy|Policy for crawlers and bots]] that wish to operate on Wikimedia websites</span>


[[Category:Bots{{#translation:}}]]
[[Category:Bots{{#translation:}}]]

Revision as of 00:44, 29 March 2024

As of February 15, 2010, Wikimedia sites require a HTTP User-Agent header for all requests. This was an operative decision made by the technical staff and was announced and discussed on the technical mailing list.[1][2] The rationale is, that clients that do not send a User-Agent string are mostly ill behaved scripts that cause a lot of load on the servers, without benefiting the projects. User-Agent strings that begin with non-descriptive default values, such as python-requests/x, may also be blocked from Wikimedia sites (or parts of a website, e.g. api.php).

Requests (e.g. from browsers or scripts) that do not send a descriptive User-Agent header, may encounter an error message like this:

Scripts should use an informative User-Agent string with contact information, or they may be blocked without notice.

Requests from disallowed user agents may instead encounter a less helpful error message like this:

Our servers are currently experiencing a technical problem. Please try again in a few minutes.

This change is most likely to affect scripts (bots) accessing Wikimedia websites such as Wikipedia automatically, via api.php or otherwise, and command line programs.[3] If you run a bot, please send a User-Agent header identifying the bot with an identifier that isn't going to be confused with many other bots, and supplying some way of contacting you (e.g. a userpage on the local wiki, a userpage on a related wiki using interwiki linking syntax, a URI for a relevant external website, or an email address), e.g.:

User-Agent: CoolBot/0.0 (https://example.org/coolbot/; coolbot@example.org) generic-library/0.0

The generic format is <client name>/<version> (<contact information>) <library/framework name>/<version> [<library name>/<version> ...]. Parts that are not applicable can be omitted.

আপনি যদি একটি স্বয়ংক্রিয় এজেন্ট চালনা করেন তবে দয়া করে ব্যবহারকারী-এজেন্ট স্ট্রিংয়ে "বট" স্ট্রিংয়ের লোয়ারকেস বা বড় হাতের অক্ষরের কোনও সংমিশ্রণে ইন্টারনেট-প্রশস্ত কনভেনশন অনুসরণ করে বিবেচনা করুন। এটি উইকিমিডিয়া সিস্টেমগুলি দ্বারা স্বীকৃত এবং ট্র্যাফিকের শ্রেণিবদ্ধকরণ এবং আরও সঠিক পরিসংখ্যান সরবরাহ করতে ব্যবহৃত হয়।

Do not copy a browser's user agent for your bot, as bot-like behavior with a browser's user agent will be assumed malicious.[4] Do not use generic agents such as "curl", "lwp", "Python-urllib", and so on. For large frameworks like pywikibot, there are so many users that just "pywikibot" is likely to be somewhat vague. Including detail about the specific task/script/etc would be a good idea, even if that detail is opaque to anyone besides the operator.[5]

Web browsers generally send a User-Agent string automatically; if you encounter the above error, please refer to your browser's manual to find out how to set the User-Agent string. Note that some plugins or proxies for privacy enhancement may suppress this header. However, for anonymous surfing, it is recommended to send a generic User-Agent string, instead of suppressing it or sending an empty string. Note that other features are much more likely to identify you to a website — if you are interested in protecting your privacy, visit the Cover Your Tracks project.

Browser-based applications written in JavaScript are typically forced to send the same User-Agent header as the browser that hosts them. This is not a violation of policy, however such applications are encouraged to include the Api-User-Agent header to supply an appropriate agent.

২০১৫ সালের হিসাবে, উইকিমিডিয়া সাইটগুলি কোনও ব্যবহারকারী-এজেন্ট হেডার সেট না করে এমন ক্লায়েন্টদের সমস্ত পৃষ্ঠা দর্শন এবং API অনুরোধ প্রত্যাখ্যান করে না। তাই এই প্রয়োজনীয়তাটি স্বয়ংক্রিয়ভাবে প্রয়োগ করা হয় না। বরং এটি প্রয়োজন হিসাবে নির্দিষ্ট ক্ষেত্রে প্রয়োগ করা যেতে পারে।[6]

Code examples

On Wikimedia wikis, if you don't supply a User-Agent header, or you supply an empty or generic one, your request will fail with an HTTP 403 error. Other MediaWiki installations may have similar policies.

JavaScript

If you are calling the API from browser-based JavaScript, you won't be able to influence the User-Agent header: the browser will use its own. To work around this, use the Api-User-Agent header:

// Using XMLHttpRequest
xhr.setRequestHeader( 'Api-User-Agent', 'Example/1.0' );
// Using jQuery
$.ajax( {
    url: 'https://example/...',
    data: ...,
    dataType: 'json',
    type: 'GET',
    headers: { 'Api-User-Agent': 'Example/1.0' },
} ).then( function ( data )  {
    // ..
} );
// Using mw.Api
var api = new mw.Api( {
    ajax: {
        headers: { 'Api-User-Agent': 'Example/1.0' }
    }
} );
api.get( ... ).then( function ( data ) {
    // ...
});
// Using Fetch
fetch( 'https://example/...', {
    method: 'GET',
    headers: new Headers( {
        'Api-User-Agent': 'Example/1.0'
    } )
} ).then( function ( response ) {
    return response.json();
} ).then( function ( data ) {
    // ...
});

PHP

In PHP, you can identify your user-agent with code such as this:

ini_set( 'user_agent', 'CoolBot/0.0 (https://example.org/coolbot/; coolbot@example.org)' );

cURL

Or if you use cURL:

curl_setopt( $curl, CURLOPT_USERAGENT, 'CoolBot/0.0 (https://example.org/coolbot/; coolbot@example.org)' );

Python

In Python, you can use the Requests library to set a header:

import requests

url = 'https://example/...'
headers = {'User-Agent': 'CoolBot/0.0 (https://example.org/coolbot/; coolbot@example.org)'}

response = requests.get(url, headers=headers)
from SPARQLWrapper import SPARQLWrapper, JSON

url = 'https://example/...'
user_agent = 'CoolBot/0.0 (https://example.org/coolbot/; coolbot@example.org)'

sparql = SPARQLWrapper(url, agent = user_agent )
results = sparql.query()

টীকা

  1. The Wikitech-l February 2010 Archive by subject
  2. User-Agent: - Wikitech-l - lists.wikimedia.org
  3. API:FAQ - MediaWiki
  4. [Wikitech-l] User-Agent:
  5. title=Clarification on what is needed for "identifying the bot" in bot user-agent?
  6. gmane.science.linguistics.wikipedia.technical/83870 (deadlink)

আরও দেখুন