സഹായകേന്ദ്രം
നിങ്ങളുടെ ഭാഷ തിരഞ്ഞെടുക്കൂ
  • azərbaycan
  • Afrikaans
  • Bahasa Indonesia
  • Melayu
  • català
  • čeština
  • dansk
  • Deutsch
  • eesti
  • English
  • español
  • français
  • Gaeilge
  • hrvatski
  • italiano
  • Kiswahili
  • latviešu
  • lietuvių
  • magyar
  • Nederlands
  • norsk bokmål
  • o‘zbek
  • Filipino
  • polski
  • Português (Brasil)
  • Português (Portugal)
  • română
  • shqip
  • slovenčina
  • slovenščina
  • suomi
  • svenska
  • Tiếng Việt
  • Türkçe
  • Ελληνικά
  • български
  • қазақ тілі
  • македонски
  • русский
  • српски
  • українська
  • עברית
  • العربية
  • فارسی
  • اردو
  • বাংলা
  • हिन्दी
  • ગુજરાતી
  • ಕನ್ನಡ
  • मराठी
  • ਪੰਜਾਬੀ
  • தமிழ்
  • తెలుగు
  • മലയാളം
  • ไทย
  • 简体中文
  • 繁體中文
  • 日本語
  • 한국어
  • WhatsApp Web
  • ഫീച്ചറുകൾ
  • ഡൗൺലോഡ്
  • സുരക്ഷ
  • സഹായകേന്ദ്രം
  • ഡൗൺലോഡ്
  • ഫീച്ചറുകൾ
  • സുരക്ഷ
  • സഹായകേന്ദ്രം
  • സമ്പർക്കത്തിലാവൂ

നിങ്ങളെ ഞങ്ങളെങ്ങനെ സഹായിക്കണം?

താഴെയുള്ള വിഷയങ്ങളിൽ ബ്രൗസ് ചെയ്തും നിങ്ങൾ അന്വേഷിക്കുന്നവ കണ്ടെത്താം
iPhone

How to link to WhatsApp from a different app

There are several ways to have your iPhone application interact with WhatsApp: universal links, custom URL schemes, share extension, and the Document Interaction API.

Universal links

Universal links are the preferred method of linking to a WhatsApp account.

Use https://wa.me/<number> where the <number> is a full phone number in international format. Omit any brackets, dashes, plus signs, and leading zeros when adding the phone number in international format.

Examples:

Use: https://wa.me/15551234567

Don't use: https://wa.me/+001-(555)1234567

Universal links can also include a pre-filled message that will automatically appear in the text field of a chat. Use https://wa.me/whatsappphonenumber/?text=urlencodedtext where whatsappphonenumber is a full phone number in international format and URL-encodedtext is the URL-encoded pre-filled message.

Example: https://wa.me/15551234567?text=I'm%20interested%20in%20your%20car%20for%20sale

To create a link with just a pre-filled message, use https://wa.me/?text=urlencodedtext

Example: https://wa.me/?text=I'm%20inquiring%20about%20the%20apartment%20listing`

Custom URL Scheme

Opening whatsapp:// URL with one of the following parameters, will open our app and perform a custom action.

URLParametersOpens
app-The WhatsApp Messenger application
sendNew chat composer
textIf present, this text will be pre-filled into message text input field on a conversation screen.

The Objective-C call to open one of these URLs is as follows:

NSURL *whatsappURL = [NSURL URLWithString:@"whatsapp://send?text=Hello%2C%20World!"];
if ([[UIApplication sharedApplication] canOpenURL: whatsappURL]) { [[UIApplication sharedApplication] openURL: whatsappURL];
}

Be sure to include WhatsApp URL scheme in your application's Info.plist under LSApplicationQueriesSchemes key if you want to determine whether WhatsApp is installed on the user’s iPhone using -[UIApplication canOpenURL:].

Share Extension

Introduced in iOS 8.0, Share Extension provides a convenient way for any app to share content with other applications installed on user's iPhone. This is now the preferred way of sharing your content onto WhatsApp. To use Share Extension, create an instance of UIActivityViewController and present it in your app. WhatsApp accepts the following types of content:

  • text (UTI: public.plain-text)
  • photos (UTI: public.image)
  • videos (UTI: public.movie)
  • audio notes and music files (UTI: public.audio)
  • PDF documents (UTI: com.adobe.pdf)
  • contact cards (UTI: public.vcard)
  • web URLs (UTI: public.url)

Document Interaction

If your application creates photos, videos, or audio notes and you'd like your users to share these media using WhatsApp, you can use the Document Interaction API to send your media to your WhatsApp contacts and groups.

WhatsApp Messenger can handle various types of media:

  • images of any type that conforms to public.image (for example, PNG and JPEG)
  • videos of any type that conforms to public.movie (for example, MPEG-4 video)
  • audio files (only MPEG-3, MPEG-4, AIFF, AIFF-C and Core Audio)

Alternatively, if you want to show only WhatsApp in the application list (instead of WhatsApp plus any other public/*-conforming apps) you can specify a file of one of aforementioned types saved with the extension that is exclusive to WhatsApp:

  • images - «.wai» which is of type net.whatsapp.image
  • videos - «.wam» which is of type net.whatsapp.movie
  • audio files - «.waa» which is of type net.whatsapp.audio

When triggered, WhatsApp will immediately present the user with the contact/group picker screen. The media will be automatically sent to a selected contact/group.

For more information about sharing media to WhatsApp, consult the resources on Apple’s Developer website.

ഈ ലേഖനം സഹായപ്രദമായിരുന്നോ?
അതെഅല്ല
എന്തുകൊണ്ട് ഈ ലേഖനം സഹായകരമല്ല?
  • ഈ ലേഖനം കുഴപ്പിക്കുന്നതാണ്
  • ഈ ലേഖനം എന്റെ ചോദ്യത്തിന് ഉത്തരമാവുന്നില്ല
  • ഈ പരിഹാരപ്രക്രിയ പ്രവർത്തിക്കുന്നില്ല
  • ഫീച്ചർ/നയം ഞാൻ ഇഷ്ടപ്പെടുന്നില്ല
നിങ്ങളുടെ പ്രതികരണത്തിനു നന്ദി
സഹായകേന്ദ്രം

WhatsApp

  • ഫീച്ചറുകൾ
  • സുരക്ഷ
  • ഡൗൺലോഡ്
  • WhatsApp Web
  • ബിസിനസ്
  • സ്വകാര്യത

കമ്പനി

  • ഞങ്ങളെക്കുറിച്ച്
  • ജോലികൾ
  • ഉല്പന്ന കേന്ദ്രം
  • സമ്പർക്കത്തിലാവൂ
  • ബ്ലോഗ്
  • WhatsApp സ്റ്റോറികൾ

ഡൗൺലോഡ്

  • മാക്/പിസി
  • Android
  • iPhone

സഹായം

  • സഹായകേന്ദ്രം
  • ട്വിറ്റർ
  • ഫെയ്സ്ബുക്ക്
  • കോറോണ വൈറസ്
2021 © WhatsApp LLC
സ്വകാര്യത & വ്യവസ്ഥകൾ