문제

If you look at the 'Tags' option when you post a question, it gives an auto-complete/intellisense-assist when we type a tag, say SQL Server, for example. I need to get the whole list of technologies, the itemsSource, of this intellisense-assist. You may see a similar use-case in LinkedIn when we try to add a technology/skill that we learnt, to our profile. Can someone please tell me the source from which we may get this whole list of technolgies?

도움이 되었습니까?

해결책

You mean like

http://api.stackoverflow.com/1.1/tags

which gives:

{
"total": 35690,
"page": 1,
"pagesize": 70,
"tags": [
{
"name": "c#",
"count": 576794,
"fulfills_required": false
},
{
"name": "java",
"count": 554383,
"fulfills_required": false
},
{
"name": "javascript",
"count": 523194,
"fulfills_required": false
},
...

Have a look at Stack Exchange API

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top