Jump to content

How do you "publish" a notebook? Can't find the feature anymore.


Recommended Posts

  • Level 5

It is mentioned in the release notes of v10 that the new client generation does not yet support published notebooks for the business plan. Since it is listed in the "not yet available" section, it will be added with one of the future releases.

If you want to put an emphasis on this, issue a support ticket asking for this feature.

https://help.evernote.com/hc/en-us/articles/360047889234-What-s-new-in-Evernote-for-Windows

Link to comment
  • 4 weeks later...

I remember we used to do that with Evernote a few years ago, but now it seems we can only make public single notes.

But I can't find how to make a whole notebook to be publicly shared with a link.

I mean, I want to make a notebook (with all its notes inside) accessible to anyone with the shared public link,

just like a url that everyone can see just with web access. 

Where is that option now? Thanks!

Link to comment
  • Level 5*
7 minutes ago, Ryokan said:

I remember we used to do that with Evernote a few years ago, but now it seems we can only make public single notes.

I merged your post with an ongoing discussion   
You can read the above notes for more information

Link to comment
  • 4 months later...

Is there a timeline for this feature to come back? This is one of the most important features I use, with clients en students. The fact that I can share my ideas with a public link. It's not really user-friendly that clients need to register to watch my notes.

Please add this feature back ASAP.
A very-long-time-Evernote-user.

Link to comment
  • Level 5*
6 hours ago, pixelman said:

Is there a timeline for this feature to come back? This is one of the most important features I use, with clients en students. The fact that I can share my ideas with a public link. It's not really user-friendly that clients need to register to watch my notes.

Please add this feature back ASAP.
A very-long-time-Evernote-user.

As noted above,  you could install the Legacy version to get back to that option,  or you could maybe look at Postach.io which converts a notebook into a publicly available 'blog' format.  I've played with it - my not very inspiring example here... https://cliffeactual.postach.io/

  • Like 1
Link to comment
  • 2 weeks later...
  • 11 months later...
On 8/16/2021 at 9:12 PM, gazumped said:

As noted above,  you could install the Legacy version to get back to that option,  or you could maybe look at Postach.io which converts a notebook into a publicly available 'blog' format.  I've played with it - my not very inspiring example here... https://cliffeactual.postach.io/

Thank you very much for this solution ! That works perfectly. I don't understand why developers remove useful features in upgrades. It seems so regressive to me.

By the way this solution should fit until this extremely expected feature comes back in a future version (hopefully :).

  • Like 1
Link to comment
  • 5 months later...

I found a solution to make a public link to notebook. It is possible via Evernote API:

# Get the default notebook for the current user
notebook = note_store.getDefaultNotebook()
# Allow it to be publicy viewable
notebook.published = True

notebook.publishing = Types.Publishing()
# Define the URI for the shared notebook
notebook.publishing.uri = "iseeyou"
# Give it a description
notebook.publishing.publicDescription = "My default notebook is public!"
# Update it on the server
note_store.updateNotebook(notebook)
# Build the URL for visiting the notebook on the web
notebookUrl = "https://%s/pub/%s/%s/" % \
                (client.service_host, 
                 user_store.getUser().username, 
                 notebook.publishing.uri)

print "View this notebook:",
print notebookUrl

# Output:
# https://sandbox.evernote.com/pub/inkedmn/iseeyou/

Source: https://dev.evernote.com/doc/articles/notebook_sharing.php

If interested, I could share a working script to publish any notebook, I wrote for myself.

  • Like 1
  • Thanks 1
Link to comment
  • Level 5

This option does not exist any more in v10.

You can invite one or several persons to a notebook share, but the public link is not available any more.

The script is a useful workaround for those who need the functionality (have not tried it, but I assume it works).

  • Like 1
Link to comment
  • Level 5*
6 hours ago, PinkElephant said:

This option does not exist any more in v10.

I did not realise that - got as far as checking the notebooks page still had a 'share' option and wondered what the fuss was about.   Apologies,  both.

  • Like 2
Link to comment
  • 6 months later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...