User doc for new Svnkit Api? - svnkit

There seems to exist some new SVNKit API under "org.tmatesoft.svn.core.wc2" based on SvnOperationFactory according to some answers to svnkit questions: svnkitquestion.
Yet i cannot find any documentation on how to use this / examples. The only thing is found is the javadoc to the class, which doesnt really help you as a user of the api.
Where can i find the user documentation for the new api?
Cheers!

Related

Instagram API - get own posts for website

I read through all the dev docs stuff at https://developers.facebook.com, but I found no simple solution to solve that one simple question. I want to display my own posts detail at my website. Is that even possible?
This is possible using IG Basic Display API and the GET /{user-id}/media endpoint
You will need to build a Login flow which is described in the Get Started guide
https://developers.facebook.com/docs/instagram-basic-display-api/getting-started
https://developers.facebook.com/docs/instagram-basic-display-api/reference/user/media

Instagram Client ID / new requirements of Instagram API

I have been using instafeed on a few projects over the past years, all without to many issues.
With Instagrams new API requirements im running into some issues and any help would be just super -
So far I have set up the basic API accsess (generated my ID and accsessToken) -
(so I have completed the docs here - https://developers.facebook.com/docs/instagram-basic-display-api/getting-started)
Im now trying to get my ClientID but cannot seem to find where to do this (given that this chnage is new, allot of the infomation I find online refers to the old way of doing this, which was from:
https://www.instagram.com/developer/clients/register/
However this now returns:
New registrations not supported anymore)
So questions (and again any help here would be really appreciated) -
1) Can you still use instafeed js to show your instagram posts on your site (with all these chnages to the API is it still valid for new accounts)
2) How can I now generate a ClientID?
i.e. (this is from instafeed.js)
var feed = new Instafeed({
get: 'user', // <-- new
userId: 'XXXXXXX <<<< GOT THE CODE', // <-- new
clientId: '??????????????? <<< **need this code for it to work**',
accessToken:'XXXXXXX <<<< Got the code',
template: '<img src="{{image}}" />',
sortBy: 'most-recent',
limit: '6',
resolution: 'thumbnail'
});
feed.run();
Any help on this would be amazing - Sorry if I have asked questions in a junior dev way, I am what I am :P
As a last question (and a little cheeky) -
3) what pit holes have you found with regards to posting Instagram posts on your site with the new API settings (im asking this as "you can only know what you know and what you know you dont know") - so just making sure I havent overlooked something.
Thank you in advance,
Warm regards,
W
Since Instagram doesn't support new developer registrations, you won't be able to get a working clientId for your feed. Instagram's old API is being turned off completely on March 2, 2020, and is in the process of being replaced with the Instagram Graph API - particularly the Basic Display API.
The 'no new developer accounts' policy also extends to 'no new apps', so even if you had an existing dev account, you wouldn't be able to create a new ClientID anyway.
So, to answer your questions:
No, not for new accounts.
You can't as far as I know
I'm not aware of a method to embed a user's IG feed in another website via the new API, using only client-side code (which is how instafeed.js works). More detail on that below.
For instafeed.js specifically, we're investigating whether it's possible/practical to provide a similar result with the new APIs. At this stage, the authentication scheme makes it seem impractical, and there is definitely no mention of 'show my feed on another website' in the examples of allowed use-cases. It may be possible with a server-side application, but not by just dropping a snippet of JS in a page.
Lastly, I'm speculating here, but my strong impression is that this use-case is not desired by FB/IG. The old API had its permissions tightened continuously before it was finally deprecated. It would be trivially easy for FB/IG to provide a simple 'embed my feed' facility with the new API if they wanted to - my assumption is that they want users on instagram.com or in the app to look at that content, not out elsewhere on the web.
I'm not aware of a method to embed a user's Instagram feed in another website via the new API, using only client-side code (which is how instafeed.js works).
That is true... However, if you are willing to think outside the box you can still show your feed on your website. Hint: it requires Zapier to cross-post your Instagram image to a public RSS feed in the background.
Read about it here: https://stackoverflow.com/a/60394300/2397550

Instagram media endpoint without authentication - https://www.instagram.com/${user}/media/ - unofficial?

Instagram introduced an obligatory authentication for their api https://api.instagram.com/v1/.
But it is still possible to get a public feed which is sufficient for my purpose https://www.instagram.com/${user}/media/ e.g.
https://www.instagram.com/instagram/media/.
I can't find this in the official documentation, though so that I'm hesitating to use it. Is this an unofficial api?
I found many sources using it and also many threads.Anyone found this in an instagram documentation?

Retrieving Recommends for blog entry: Method not allowed

I'm trying to retrieve a feed of recommenders for a blog entry as described in the API documentation here:
http://www-0.lotus.com/ldd/appdevwiki.nsf/xpDocViewer.xsp?lookupName=IBM+Connections+4.0+API+Documentation#action=openDocument&res_title=Getting_a_list_of_recommenders_ic40a&content=pdcontent
Problem is, I always get a http 405: method not allowed. Is this a known problem? Am I doing anything wrong? To be more precise, I am dealing with entries of an ideation blog here. My request is authenticated with the owner of the community and ideation blog.
Answer is a composition of comments from Benny and I - https:///blogs//api/recommend/entries/ enable one to find the details of the blog votes.

Is there a full list of the parameters supported by the Facebook search API?

There is a search API can be used by developers to conveniently query posts, people in Facebook. But is there a full list of the parameters supported by the Facebook search API?
Facebook official docs provide what you need .graph api reference page has nice table describing what are various fields that can be used to call graph api.
Few links to use graph API and its reference
https://developers.facebook.com/docs/graph-api/using-graph-api/
https://developers.facebook.com/docs/graph-api/reference/
Github gist of Facebook Cheatsheet
https://gist.github.com/stevedev/1097432
Ill assume you did not find/read their website on FQL, so Ill give you that address now.
https://developers.facebook.com/docs/reference/fql/

Resources