Tus comentarios

While we haven't quite implemented the feature you are asking about (sorting groups), we did just add a new option to control the sorting of publications within each group. Please see the "sort" option on the updated help page.

Hi Jérémy,

Thanks for your request. This feature has been on our road map for too long, so I decided to add it right away. You can now add a "sort" option to the bibbase URL, see the updated options section on the help page. So in your case you would just add "&sort=author_short" to the bibbase URL you embedded in your HTML.

Please let me know if you notice any issues with this feature.

At long last this problem has been fixed. Crossrefs are now filtered out from the resulting listing.

Looking at their API, I would think that their HTTPClient.jsonp method is what you are looking for: https://angular.io/api/common/http/HttpClient#jsonp

With that you should be able to somehow fetch the JSONP version of your BibBase page directly: https://bibbase.org/show?bib=https%3A%2F%2Fbibbase.org%2Fbibs%2Fex.bib&jsonp=1

I think this is really an Angular question. Angular must provide some other mechanism for fetching data from another server. Because yes, this should definitely be possible. Besides, the Angular realm will end somewhere, meaning that in the end it will be HTML + CSS + JS being interpreted in the browser, and at that point the script tag will definitely work. So even if Angular doesn't allow you to fetch HTML from somewhere else, it should be possible to have some static HTML survive or by-pass the Angular treatment.

I't my interpretation of the above paragraph from their API documentation. I don't think BibBase is a "scientometric researcher".


Can you say more about what kind of integration you were hoping for?

I don't get the sense that BibBase would qualify for getting access to their API:

From https://help.altmetric.com/support/solutions/articles/6000092312-how-can-i-access-the-altmetric-api-documentation-:

The Altmetric Details Page API is available free of charge for scientometric researchers, for more information about access please visit our Researcher Data Access page. For any other uses or projects using the Altmetric Details Page API please contact us.

https://api.zotero.org/groups/2327738/items?key=XCsZkByXjwNfD2MKCHPFRxOr&format=bibtex&limit=100

just renders a page that says "Forbidden". So this is not a BibBase error. I assume the key is just not correct. Was this link provided to you by BibBase after you followed the steps to connect to Zotero? Those steps are still working for me.

https://bibbase.org/show?bib=https%3A%2F%2Fapi.zotero.org%2Fgroups%2F168779%2Fitems%3Fkey%3D5NiSjFzfkalrYRc6naCuRmeQ%26format%3Dbibtex%26limit%3D100&msg=embed


If the key is correct then maybe the group you are trying to use is private or similar?

Oh, I see the unintended indentation now. Hm, I assume this is coming from the Bootstrap CSS that is loaded by bibbase.

I found this CSS on that page, and when I remove it, it's fine again:

@media (max-width: 767px) body {
    padding-left: 20px;
    padding-right: 20px;
}

So if you add:

@media (max-width: 767px) body {
     padding-left: 0px !important;
     padding-right: 0px !important;
}

The indentation should go away.