Document-wide search in OneNote - onedrive

Is it possible to search all of the pages in OneNote in SkyDrive? I tried many options, but don't see a way to accomplish this.

According to the MS help, no.
"Search is limited to the current section in OneNote Web App."

Related

How to download a file from a SharePoint though a website button?

I hope all is well,
I have a webpage that has a button and a SharePoint library.
Once the user clicks the download button, the document will be downloaded from SharePoint with a watermark of the user trying to download this file.
Additionally, I need to manage who can access or download the file.
Therefore, the main points to consider are:
User authentication to the SharePoint document library
Pulling the document from the website itself
Watermark feature
Thus, what is the most effective practice to achieve that and what should I use?
Thanks in advance
oh man, this is really an open and not quite detailed question 😟. Could you provide more context? what language are you using? have you already tried something and what is failing?
For now, the only help I may provide you is just general info 🙂:
User authentication to the SharePoint document library
if you are extending SharePoint or M365 with a SPFx solution you do not need to worry on auth. If it is totally aside I would recommend checking
https://learn.microsoft.com/en-us/graph/auth/auth-concepts
I would strongly recommend checking microsoft-graph-toolkit there is a mgt-login component
https://learn.microsoft.com/en-us/graph/toolkit/components/login
again here I would also recommend using MS Graph and endpoint like https://graph.microsoft.com/(version)/sites/(site-id)/drive/(drive-id)/items/(item-id)/content
I guess this is a very similar topic: Sharepoint Graph API download file from Document library that are not listed as drive ("Site Pages" and others)
Watermark feature
as for this I would take a look at Microsoft 365 sensitivity labels feature and read more about it here
https://learn.microsoft.com/en-us/microsoft-365/compliance/sensitivity-labels?view=o365-worldwide#what-sensitivity-labels-can-do
I hope this will be of any help. For sure it is a good start 🙂

Does Quip have a document search API?

I've looked high and low in the Quip docs to see if there's a way to search Quip documents via an API. Does anyone know of such an endpoint?
I imagine you have probably already found this by now, but if not there is the quip automation api which does include a basic search ability: https://igt.quip.com/dev/automation/documentation#search-for-threads
For a more robust search, you would need to write a script to loop through every thread

Is it possible to create google sheet template programmatically?

Is it possible to create google sheet template programmatically? If yes how to do it? I know I am suppose to check API documentation but I am not a technical person.
I don't think this is supported as of now.
I searched in Introduction to the Google Sheets API docs for a guide on how to do operations with Sheets API but have not found an explicit guide on how to do this.
You can also check Spreadsheet using Google App Script but there is no mention as well.

add google search box to my site

I've been researching how to add a Google search box to my site. Basically, the text box and a 'Go' button, which will search the web - except from my site. I used to see these every where.
Come to think of it now though I haven't seen it in a long time. And all the stuff I've come across in research is from early 2010 at the latest. Some searches say Google deprecated the API for what I'm looking for in 2009?
Is it still possible to get code for putting in a Google search on your page? Do you know where? Bing or Yahoo would do, too. Thanks,
Chris.
You should look at Google Custom Search Engines - http://www.google.com/cse/all
Try the google jsapi, look at the Hello World - Google Web Search API Sample and adjust to your layout,
https://developers.google.com/web-search/docs/

How do I make a VB.NET application that can rip websites from Google?

I'm trying to make a VB.NET application that can take some text in (via Text Box) and then search that text in Google, and take the resulting URLs from Google.
So my questions are:
How do I make it search Google?
How do I make it take the found URLs from Google?
And any ideas represented through code would be appreciated, I know I some how have to rip the URLs from google, but how?
It sounds like you want to use the Google search engine but have everything located inside your application. In this case, Google provides an API that will allow you to do this without doing web scraping or other hacks. You can read more about it and see examples (in .NET but usually C#) here:
http://code.google.com/p/google-api-for-dotnet/
Here is an example of how to do this in your code:
http://www.c-sharpcorner.com/UploadFile/mem_1910/1st08162006033511AM/1st.aspx