{"id":41878,"date":"2020-02-17T11:17:20","date_gmt":"2020-02-17T08:17:20","guid":{"rendered":"https:\/\/prohoster.info\/blog\/blog_prohoster\/telegram-1s-vebhuki-apach-samopodpisannyj-sertifikat"},"modified":"2020-02-17T11:17:20","modified_gmt":"2020-02-17T08:17:20","slug":"telegram-1s-vebhuki-apach-samopodpisannyj-sertifikat","status":"publish","type":"post","link":"https:\/\/prohoster.info\/it\/blog\/telegram-1s-vebhuki-apach-samopodpisannyj-sertifikat","title":{"rendered":"Telegram + 1C + Webhook + Apache + Certificato autofirmato","gt_translate_keys":[{"key":"rendered","format":"text"}]},"content":{"rendered":"<p>Sono state scritte molte righe sull'integrazione di Telegram e 1C. Ma non ho trovato una guida completa per l'installazione e la configurazione dei webhook. Prover\u00f2 a scriverla.<\/p>\n<p>Per tutto questo avremo bisogno (o sarebbe pi\u00f9 corretto dire che ho utilizzato): <\/p>\n<ol>\n<li>Apache 2.2.24<\/li>\n<li>OpenSSL (incluso nell'installazione di Apache)<\/li>\n<li>1C (con i moduli) <a class=\"wpil_keyword_link\" href=\"https:\/\/prohoster.info\/it\/server\/\"   title=\"il server web.\" data-wpil-keyword-link=\"linked\"  data-wpil-monitor-id=\"1173\">il server web.<\/a>)<\/li>\n<li>Il tuo dominio <\/li>\n<li>Un bot creato in Telegram (non descriver\u00f2 la sua creazione, poich\u00e9 \u00e8 abbastanza triviale)<\/li>\n<\/ol>\n<p>\nSi presume che tutto il software sia gi\u00e0 installato.<br \/>\n<noindex><a rel=\"nofollow\" name=\"habracut\"><\/a><\/noindex><br \/>\nIniziamo ad ottenere il certificato. Apriamo il prompt dei comandi e eseguiamo il seguente codice:<\/p>\n<pre><code class=\"bash\">openssl req -newkey rsa:2048 -sha256 -nodes -keyout YOURPRIVATE.key -x509 -days 365 -out YOURPUBLIC.pem -subj \"\/C=US\/ST=New York\/L=Brooklyn\/O=Example Brooklyn Company\/CN=YOURDOMAIN.EXAMPLE\"<\/code><\/pre>\n<p>\nDove: <\/p>\n<p>YOURPRIVATE.key \u2014 la chiave privata del certificato. Sar\u00e0 utilizzata in Apache.<\/p>\n<p>YOURPUBLIC.pem \u2014 la chiave pubblica del certificato. Sar\u00e0 utilizzata per la registrazione del webhook.<\/p>\n<p>YOURDOMAIN.EXAMPLE \u2014 l'indirizzo del tuo dominio con il webhook. Deve corrispondere all'indirizzo del webhook!!!<\/p>\n<p>Dopo aver eseguito questo codice, nella cartella openssl (nel mio caso \u00e8 \u00abC:Program FilesApache Software FoundationApache2.2bin\u00bb) appariranno i file delle chiavi. <\/p>\n<p>Li ho copiati nella cartella conf di Apache.<\/p>\n<p>Procediamo con la configurazione di Apache.<\/p>\n<p>Ho visto molti modi diversi. Quello che ha funzionato per me \u00e8 il seguente:<\/p>\n<p>Sono state aggiunte le seguenti righe a httpd.conf:<\/p>\n<pre><code class=\"bash\">Listen 443 <\/code><\/pre>\n<p>\naffinch\u00e9 Apache \u00abascolti\u00bb la porta 443.<\/p>\n<p>Il blocco &lt;IfModule ssl_module&gt; \u00e8 stato modificato nel seguente modo:<\/p>\n<pre><code class=\"apache\">&lt;IfModule ssl_module&gt;\nSSLMutex default\nSSLSessionCache none\n&lt;\/IfModule&gt;<\/code><\/pre>\n<p>\nAlla fine sono state aggiunte le righe che indicano i percorsi ai certificati:<\/p>\n<pre><code class=\"apache\">SSLEngine On\nSSLCertificateFile conf\/YOURPUBLIC.pem\nSSLCertificateKeyFile conf\/YOURPRIVATE.key<\/code><\/pre>\n<p>\nE decommentare la riga: <\/p>\n<pre><code class=\"apache\">LoadModule ssl_module modules\/mod_ssl.so <\/code><\/pre>\n<p>\nNella configurazione creiamo un servizio HTTP. Sar\u00e0 lui a rispondere al telegramma e a gestirne le richieste.<\/p>\n<p>Nel mio caso sono stati specificati i seguenti parametri:<\/p>\n<p>Nome: TGBWebhook<br \/>\nURL radice: webhook<br \/>\nRiutilizzo delle sessioni: <b>Non usare <\/b>(con la modalit\u00e0 automatica non ha funzionato)<br \/>\nTempo di vita: 20<br \/>\nModelli URL: \u00e8 stato creato un modello \u00abQualsiasi\u00bb con due metodi: GET e POST<\/p>\n<p><img decoding=\"async\" alt=\"Telegram + 1C + Webhook + Apache + Certificato autofirmato\" src=\"\/wp-content\/uploads\/2020\/02\/fe55005319b7fa3b3c50b040291a7eae.jpeg\" style=\"display:block;margin: 0 auto;\" \/><br \/>\n<br \/>\n<img decoding=\"async\" alt=\"Telegram + 1C + Webhook + Apache + Certificato autofirmato\" src=\"\/wp-content\/uploads\/2020\/02\/7375ddf9212ee929af7220ed7e40653e.jpeg\" style=\"display:block;margin: 0 auto;\" \/><br \/>\n<br \/>\n<img decoding=\"async\" alt=\"Telegram + 1C + Webhook + Apache + Certificato autofirmato\" src=\"\/wp-content\/uploads\/2020\/02\/dd662f1050423d34a770b5674d1c8cca.jpeg\" style=\"display:block;margin: 0 auto;\" \/><br \/>\n<br \/>\nI gestori dei metodi vengono creati per impostazione predefinita. Nel gestore POST aggiunger\u00f2 il seguente codice, solo per verificare la connessione:<\/p>\n<pre><code class=\"1c\">Funzione QualsiasiPOST(Richiesta)\n\n\tInviaMessaggioDiTest(\"\"); \/\/chat_id\n\tRisposta = Nuovo HTTPServizioRisposta(200);\n\tRestituisci Risposta;\n\t\nFineFunzione\n\n\n&amp;SulServer\nProcedura InviaMessaggioDiTest(Chat)\n\t\n\t\tMessaggio = \"Messaggio di test\";\n\t\tToken = \"\";\/\/Il tuo token telegram\n\t\tServer = \"api.telegram.org\";\n\t    Risorsa = \"bot\" + Token + \"\/sendMessage?chat_id=\" + StrSostituisci(Formato(Chat, \"CD=; CS=; CRG=.&amp;\"), \".\", \"\") + \"&amp;text=\" + Messaggio;\n   \t\tConnessione  =  Nuovo HTTPConnessione(Server,443,,,,,Nuova ConnessioneSicuraOpenSSL());\n\t\tRichiesta = Nuovo HTTPRichiesta(Risorsa);\n\t\tRisposta = Connessione.Ottieni(Richiesta);\n\t\nFineProcedura<\/code><\/pre>\n<p>\nResta solo da pubblicare il database e collegare il webhook.<\/p>\n<p>La pubblicazione avviene come sempre, \u00e8 necessario solo aggiungere i segni di spunta sulle pubblicazioni del servizio HTTP:<\/p>\n<p><img decoding=\"async\" alt=\"Telegram + 1C + Webhook + Apache + Certificato autofirmato\" src=\"\/wp-content\/uploads\/2020\/02\/8247848371a6381f7fee4ce21a57b6b0.jpeg\" style=\"display:block;margin: 0 auto;\" \/><br \/>\n<br \/>\nUltimo passaggio, collegheremo il nostro 1C a Telegram. Per questo ho utilizzato una semplice pagina html con il seguente codice:<\/p>\n<pre><code class=\"xml\">&lt;html&gt;\n&lt;body&gt;\n\n&lt;form action=&quot;https:\/\/api.telegram.org\/bot&lt;\u0417\u0434\u0435\u0441\u044c\u0414\u043e\u043b\u0436\u0435\u043d\u0411\u044b\u0442\u044c\u0422\u043e\u043a\u0435\u043d&gt;\/setwebhook&quot; method=&quot;post&quot; enctype=&quot;multipart\/form-data&quot;&gt;\n    Seleziona il certificato da caricare:\n    &lt;input type=&quot;file&quot; name=&quot;certificate&quot; id=&quot;fileToUpload&quot;&gt;\n\tURL: &lt;input type=&quot;text&quot; name=&quot;url&quot;  value=&quot;https:\/\/&lt;YOURWEBSITE&gt;\/&lt;YOUR_PHP_URL&gt;&quot;&gt;&lt;br&gt;\n    &lt;input type=&quot;submit&quot; value=&quot;Carica certificato&quot; name=&quot;submit&quot;&gt;\n&lt;\/form&gt;\n\n&lt;\/body&gt;\n&lt;\/html&gt;<\/code><\/pre>\n<p>\nNel modulo selezioniamo semplicemente la chiave pubblica e inseriamo il percorso completo al nostro servizio HTTP. Ricordo che il percorso completo al servizio sar\u00e0 cos\u00ec composto: <\/p>\n<p><b><noindex><a rel=\"nofollow\" href=\"https:\/\/%VostroDominio%\/NomeDomini\/hs\/NomeServizi\/v1\/\">IlTuoDominio\/NomeDatabase\/hs\/NomeServizio\/v1<\/a><\/noindex><br \/>\n<\/b><br \/>\nPer favore, non calciate il codice; alcune cose sono state fatte appositamente in hardcoding, poich\u00e9 tutto ci\u00f2 \u00e8 stato realizzato esclusivamente a scopi dimostrativi.<\/p>\n<p>Questo articolo \u00e8 stato scritto perch\u00e9 non ho trovato esempi funzionanti sull'uso dei webhook sul sito, eccetto il costruttore di bot di Telegram. Ma \u00e8 a pagamento e potrebbe non essere necessario per tutti in questa forma.<\/p>\n<p>Nell'archive \u00e8 inclusa l'installazione di Apache 2.2.24 insieme a OpenSSL (per qualche motivo, la ricerca di quest'ultimo mi ha preso molto tempo), un file HTML per registrare il webhook, un file di configurazione di Apache e una configurazione CF con il servizio HTTP e un esempio di invio di un messaggio di test. Non \u00e8 obbligatorio scaricare, poich\u00e9 tutto il contenuto \u00e8 presente nell'articolo.<br \/>\n<br \/>Fonte: <a content=\"nofollow\" rel=\"nofollow\" href=\"https:\/\/habr.com\/ru\/post\/488374\/\">habr.com<\/a> <\/p>","protected":false,"gt_translate_keys":[{"key":"rendered","format":"html"}]},"excerpt":{"rendered":"<p>\u041c\u043d\u043e\u0433\u043e \u0441\u0442\u0440\u043e\u043a \u0438\u0441\u043f\u0438\u0441\u0430\u043d\u043e \u043f\u0440\u043e \u0438\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u044e \u0422\u0435\u043b\u0435\u0433\u0440\u0430\u043c\u0430 \u0438 1\u0421. \u041d\u043e \u043d\u0438\u0433\u0434\u0435 \u043d\u0435 \u0443\u0432\u0438\u0434\u0435\u043b \u043f\u043e\u043b\u043d\u043e\u0439 \u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u0438 \u043f\u043e \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0435 \u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0435 \u0432\u0435\u0431\u0445\u0443\u043a\u043e\u0432. \u041f\u043e\u043f\u0440\u043e\u0431\u0443\u044e \u0435\u0451 \u043d\u0430\u043f\u0438\u0441\u0430\u0442\u044c. \u0414\u043b\u044f \u0432\u0441\u0435\u0433\u043e \u044d\u0442\u043e\u0433\u043e \u043d\u0430\u043c \u043f\u043e\u043d\u0430\u0434\u043e\u0431\u0438\u0442\u0441\u044f (\u0438\u043b\u0438 \u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u0435\u0435 \u0431\u0443\u0434\u0435\u0442 \u0441\u043a\u0430\u0437\u0430\u0442\u044c, \u0447\u0442\u043e \u0431\u044b\u043b\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u043e \u043c\u043d\u043e\u0439): Apache 2.2.24 OpenSSL (\u0432\u0445\u043e\u0434\u044f\u0449\u0438\u0439 \u0432 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0443 \u0430\u043f\u0430\u0447\u0430) 1C (\u0441 \u043c\u043e\u0434\u0443\u043b\u044f\u043c\u0438 \u0432\u0435\u0431-\u0441\u0435\u0440\u0432\u0435\u0440\u0430) \u0421\u0432\u043e\u0439 \u0434\u043e\u043c\u0435\u043d \u0421\u043e\u0437\u0434\u0430\u043d\u043d\u044b\u0439 \u0431\u043e\u0442 \u0432 \u0422\u0435\u043b\u0435\u0433\u0440\u0430\u043c (\u043d\u0435 \u0431\u0443\u0434\u0443 \u043e\u043f\u0438\u0441\u044b\u0432\u0430\u0442\u044c [&hellip;]<\/p>\n","protected":false,"gt_translate_keys":[{"key":"rendered","format":"html"}]},"author":1,"featured_media":41879,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[10],"tags":[],"class_list":["post-41878","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"\u041c\u043d\u043e\u0433\u043e \u0441\u0442\u0440\u043e\u043a \u0438\u0441\u043f\u0438\u0441\u0430\u043d\u043e \u043f\u0440\u043e \u0438\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u044e \u0422\u0435\u043b\u0435\u0433\u0440\u0430\u043c\u0430 \u0438 1\u0421. \u041d\u043e \u043d\u0438\u0433\u0434\u0435 \u043d\u0435 \u0443\u0432\u0438\u0434\u0435\u043b \u043f\u043e\u043b\u043d\u043e\u0439 \u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u0438 \u043f\u043e \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0435 \u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0435 \u0432\u0435\u0431\u0445\u0443\u043a\u043e\u0432.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Yuri Gagarin\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/prohoster.info\/it\/blog\/telegram-1s-vebhuki-apach-samopodpisannyj-sertifikat\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"it_IT\" \/>\n\t\t<meta property=\"og:site_name\" content=\"ProHoster | \u041a\u0443\u043f\u0438\u0442\u044c \u043d\u0430\u0434\u0435\u0436\u043d\u044b\u0439 \u0445\u043e\u0441\u0442\u0438\u043d\u0433 \u0434\u043b\u044f \u0441\u0430\u0439\u0442\u043e\u0432 \u0441 \u0437\u0430\u0449\u0438\u0442\u043e\u0439 \u043e\u0442 DDoS, VPS VDS \u0441\u0435\u0440\u0432\u0435\u0440\u044b\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"\ud83e\udd47\u0422\u0435\u043b\u0435\u0433\u0440\u0430\u043c + 1\u0421 + \u0412\u0435\u0431\u0445\u0443\u043a\u0438 + \u0410\u043f\u0430\u0447 + \u0421\u0430\u043c\u043e\u043f\u043e\u0434\u043f\u0438\u0441\u0430\u043d\u043d\u044b\u0439 \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442 | ProHoster\" \/>\n\t\t<meta property=\"og:description\" content=\"\u041c\u043d\u043e\u0433\u043e \u0441\u0442\u0440\u043e\u043a \u0438\u0441\u043f\u0438\u0441\u0430\u043d\u043e \u043f\u0440\u043e \u0438\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u044e \u0422\u0435\u043b\u0435\u0433\u0440\u0430\u043c\u0430 \u0438 1\u0421. \u041d\u043e \u043d\u0438\u0433\u0434\u0435 \u043d\u0435 \u0443\u0432\u0438\u0434\u0435\u043b \u043f\u043e\u043b\u043d\u043e\u0439 \u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u0438 \u043f\u043e \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0435 \u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0435 \u0432\u0435\u0431\u0445\u0443\u043a\u043e\u0432.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/prohoster.info\/it\/blog\/telegram-1s-vebhuki-apach-samopodpisannyj-sertifikat\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg\" \/>\n\t\t<meta property=\"og:image:width\" content=\"350\" \/>\n\t\t<meta property=\"og:image:height\" content=\"350\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2020-02-17T08:17:20+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2020-02-17T08:17:20+00:00\" \/>\n\t\t<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/prohoster\" \/>\n\t\t<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/prohoster\" \/>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"\ud83e\udd47Telegram + 1C + Webhook + Apache + Certificato autofirmato | ProHoster","description":"Sono state scritte molte righe sull'integrazione tra Telegram e 1C. Ma non ho mai visto istruzioni complete per l'installazione e la configurazione dei webhook.","canonical_url":"https:\/\/prohoster.info\/it\/blog\/telegram-1s-vebhuki-apach-samopodpisannyj-sertifikat","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":null,"og:locale":"it_IT","og:site_name":"ProHoster | \u041a\u0443\u043f\u0438\u0442\u044c \u043d\u0430\u0434\u0435\u0436\u043d\u044b\u0439 \u0445\u043e\u0441\u0442\u0438\u043d\u0433 \u0434\u043b\u044f \u0441\u0430\u0439\u0442\u043e\u0432 \u0441 \u0437\u0430\u0449\u0438\u0442\u043e\u0439 \u043e\u0442 DDoS, VPS VDS \u0441\u0435\u0440\u0432\u0435\u0440\u044b","og:type":"article","og:title":"\ud83e\udd47\u0422\u0435\u043b\u0435\u0433\u0440\u0430\u043c + 1\u0421 + \u0412\u0435\u0431\u0445\u0443\u043a\u0438 + \u0410\u043f\u0430\u0447 + \u0421\u0430\u043c\u043e\u043f\u043e\u0434\u043f\u0438\u0441\u0430\u043d\u043d\u044b\u0439 \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442 | ProHoster","og:description":"\u041c\u043d\u043e\u0433\u043e \u0441\u0442\u0440\u043e\u043a \u0438\u0441\u043f\u0438\u0441\u0430\u043d\u043e \u043f\u0440\u043e \u0438\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u044e \u0422\u0435\u043b\u0435\u0433\u0440\u0430\u043c\u0430 \u0438 1\u0421. \u041d\u043e \u043d\u0438\u0433\u0434\u0435 \u043d\u0435 \u0443\u0432\u0438\u0434\u0435\u043b \u043f\u043e\u043b\u043d\u043e\u0439 \u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u0438 \u043f\u043e \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0435 \u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0435 \u0432\u0435\u0431\u0445\u0443\u043a\u043e\u0432.","og:url":"https:\/\/prohoster.info\/it\/blog\/telegram-1s-vebhuki-apach-samopodpisannyj-sertifikat","og:image":"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg","og:image:secure_url":"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg","og:image:width":350,"og:image:height":350,"article:published_time":"2020-02-17T08:17:20+00:00","article:modified_time":"2020-02-17T08:17:20+00:00","article:publisher":"https:\/\/www.facebook.com\/prohoster","article:author":"https:\/\/www.facebook.com\/prohoster"},"aioseo_meta_data":{"post_id":"41878","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"seo_analyzer_scan_date":null,"breadcrumb_settings":null,"limit_modified_date":false,"reviewed_by":null,"ai":null,"created":"2021-03-01 00:08:32","updated":"2026-02-09 15:26:54","focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"gt_translate_keys":[{"key":"link","format":"url"}],"_links":{"self":[{"href":"https:\/\/prohoster.info\/it\/wp-json\/wp\/v2\/posts\/41878","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/prohoster.info\/it\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/prohoster.info\/it\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/prohoster.info\/it\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/prohoster.info\/it\/wp-json\/wp\/v2\/comments?post=41878"}],"version-history":[{"count":1,"href":"https:\/\/prohoster.info\/it\/wp-json\/wp\/v2\/posts\/41878\/revisions"}],"predecessor-version":[{"id":158417,"href":"https:\/\/prohoster.info\/it\/wp-json\/wp\/v2\/posts\/41878\/revisions\/158417"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/prohoster.info\/it\/wp-json\/wp\/v2\/media\/41879"}],"wp:attachment":[{"href":"https:\/\/prohoster.info\/it\/wp-json\/wp\/v2\/media?parent=41878"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prohoster.info\/it\/wp-json\/wp\/v2\/categories?post=41878"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prohoster.info\/it\/wp-json\/wp\/v2\/tags?post=41878"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}