how to config TYPO3 extension “news_ia” step by step - typo3

I have started using the TYPO3 extension "news_ia" and I would like to Generates Facebook Instant Articles :zap: RSS-feed with TYPO3 extension "news" (tx_news).
How can i do this?

Related

Submit Magento 2 extension programmatically

On this page, it is documented how you submit a Magento 2 extension:
https://developer.adobe.com/commerce/marketplace/guides/sellers/submit-for-technical-review/
You have to fill out an HTML form and upload your extension there.
Is there a way to submit an extension via Terminal, so you can deploy through Jenkins, for example? I didn't find any info on that...

ext: news with rx_shariff - facebook shared news return problem

I use TYPO3 8.7 and NEWS extension 6.3 and shariff-sharing.
When i share a news record on Facebook the publication goes well, but when i tried to go back to news record i get 404 error. I think the problem is a query parameter called attach to outbound links by Facebook and appearing in the news record URL. Something like http://example.com/newstitle/?fbclid=IwAR2QIndkh'. What i must do to correct this?
Any help would be appreciated.
As #Wolffc already noted, you need to add the parameter to TYPO3's cHash excluded parameters.
If you use realurl, you also need to tell realurl about it. The current master contains a change for that https://github.com/dmitryd/typo3-realurl/commit/2f1dfced4a2f64656f4091ab79ab307ff6daa469 - that makes realurl reconfigure TYPO3 to include the parameter.
Until it gets released, I suggested a common configuration that I use my realurl configuration (let realurl use the TYPO3 conf) here:
https://github.com/dmitryd/typo3-realurl/pull/650
You need ro add fbclid to the chash ignored parameters in the install tool

What Typo3 newsletter extension can automatically fetch web content changes

The Typo3 extension tt_news enables for example all created news by this extension to be shown in the newsletter but not content from a "not news" page of the website.
We are looking for a plugin which automatically finds new content on the website and let us create a newsletter from it.
What extension could be used here? Might direct mail be able to do so?
Taken from the Direct Mail manual: "Newsletter pages are just normal pages. Their rendering is configured by the TS template."
A very simple solution for what you want to do would be to write a simple extension where you get the newest content elements and output them. Direct Mail itself will not do that for you, but it will send out any content that you provide on the "Newsletter page".

Friendly url creation FLUID

I'm developping a TYPO3 extension (TYPO3 6.2) and I'm trying to create a link with parameters.
My working link is like this:
........./?param1=val1&param2=val2
Now I'm trying to make this url more friendly and want to show it as:
........./val1/val2
but when I access this url, I have a TYPO3 error saying:
Reason: Segment "val1" was not a keyword for a postVarSet as expected on page with id=MYID.
The url is created with FLUID:
<f:link.page pageUid="MYID" additionalParams="{tagid: '{var.id}'}">More</f:link.page>
Thanks for your help!
It's not about Fluid, but missing RealURL config, there are two good articles written by Dmitry Dulepov - RealURL author:
http://www.dmitry-dulepov.com/2008/05/realurl-made-easy-part-1.html
http://www.dmitry-dulepov.com/2008/06/realurl-made-easy-part-2.html

Typo3 tx news related files download counter

I have a question about the TYPO3 Extension News System 2.3.0.
If you add related files to a news, is it possible to show a download counter
or a counter that count how many users that have clicked the "Related File" !
This is not possible with the current version of the TYPO3 News extension.
You could try to create an own extension which extend the TYPO3 News extension by the functionality needed.
Your extension could include the following
Add a new property (e.g. downloads) to the Domain Model Tx_News_Domain_Model_File
An action (e.g. downloadFileAction($fileUid)), that increases the download counter and redirects the user to the file download
A ViewHelper, which renders the link to the new action for the file download
Also you should make some security considerations like "user can only download files she/he has access to".