Sponsored Content
Full Discussion: Fix a change I made
Contact Us Post Here to Contact Site Administrators and Moderators Fix a change I made Post 303021630 by drew77 on Monday 13th of August 2018 02:08:44 PM
Old 08-13-2018
Thanks.
 

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Can this be made into one single line?

Can someone please suggest a script to make the following into one single (continuous) line so that a pattern search can be carried out on the resulting single line. Note : Sample (may be shorter or longer) and will be contained in a text file ... (6 Replies)
Discussion started by: nmsinghe
6 Replies

2. UNIX for Dummies Questions & Answers

monitor changes made by root

Is there any way in Solaris 9 to monitor changes made to user accounts by root? (0 Replies)
Discussion started by: scriptarg
0 Replies

3. Cybersecurity

Help - Made a serious admin error

Hello, I am a newbie to Unix administration (specifically Solaris 9). I have everything setup properly for auditing but I neglected to realize I needed to start a new logfile each week. Thus the one logfile grew to about 2.5GB before the auditreduce command could no longer process the file. ... (4 Replies)
Discussion started by: jtbates
4 Replies

4. UNIX for Advanced & Expert Users

How to : Identify changes made with root ?

Thanks Avklinux (1 Reply)
Discussion started by: avklinux
1 Replies

5. Shell Programming and Scripting

strtotime() error - no changes made

Not sure what happened, this page/code always worked before, no changes were made to the code, only the box was powered down, moved and powered back up, the code seems to still be doing its job but spewing out these errors right on the page. Again no changes were made. Warning: strtotime()... (1 Reply)
Discussion started by: ippy98
1 Replies

6. UNIX for Dummies Questions & Answers

Made something wrong in server

hello friends, l was using this command to empty tmp directory but l made this by mistake : and l cant reach my sites now. what l did ??? ---------- Post updated 11-13-11 at 12:07 AM ---------- Previous update was 11-12-11 at... (3 Replies)
Discussion started by: rcpkrc
3 Replies

7. AIX

How to check changes made in last few weeks?

Hi, I want to know what changes were made to my AIX system in last few weeks/months. Is there any command that I can use for this? I am facing a problem wherein my program which are built few weeks back runs fine but if I build the same program now, it doesn't run as expected. ... (4 Replies)
Discussion started by: shriashishpatil
4 Replies

8. What is on Your Mind?

Self made monitoring application

Hi.. Looking for advice / feedback Work in IT in an operational team, number of years ago, all monitoring was manual, vast checklists for unix checks, checking space, checking application processes, files etc. filling in spreadsheets etc. I took some basic scripting courses in ksh and... (2 Replies)
Discussion started by: frustrated1
2 Replies

9. What is on Your Mind?

An email that has made my day...

Today I received an email from 'code.activestate.com'. It was referenced to a Python code snippet I wrote 3 years and 2 months ago. It was the third party comment at the bottom that was emailed to me... As I am a pure amateur coder this has really made my day... Platform Independent... (1 Reply)
Discussion started by: wisecracker
1 Replies
Net::Dropbox::API(3pm)					User Contributed Perl Documentation				    Net::Dropbox::API(3pm)

NAME
Net::Dropbox::API - A dropbox API interface VERSION
Version 1.8.8.8 SYNOPSIS
The Dropbox API is a OAuth based API. I try to abstract as much away as possible so you should not need to know too much about it. This is how it works: use Net::Dropbox::API; my $box = Net::Dropbox::API->new({key => 'KEY', secret => 'SECRET'}); my $login_link = $box->login; # user needs to click this link and login $box->auth; # oauth keys get exchanged my $info = $box->account_info; # and here we have our account info See the examples for a working Mojolicious web client using the Dropbox API. You can find Dropbox's API documentation at <https://www.dropbox.com/developers/web_docs> FUNCTIONS
login This sets up the initial OAuth handshake and returns the login URL. This URL has to be clicked by the user and the user then has to accept the application in dropbox. Dropbox then redirects back to the callback URL defined with "$self->callback_url". If the user already accepted the application the redirect may happen without the user actually clicking anywhere. auth The auth method changes the initial request token into access token that we need for subsequent access to the API. This method only has to be called once after login. account_info account_info polls the users info from dropbox. list lists all files in the path defined: $data = $box->list(); # top-level $data = $box->list( "/Photos" ); # folder The data returned is a ref to a hash containing various fields returned by Dropbox, including a "hash" value, which can be used later to check if Dropbox data beneath a specified folder has changed since the last call. For this, "list()" accepts an optional 'hash' argument: $data = $box->list({ hash => "ce9ccbfb8f255f234c93adcfef33b5a6" }, "/Photos"); This will either return { http_response_code => 304 } in which case nothing has changed since the last call, or { http_response_code => 200, # ... various other fields } if there were modifications. copy copies a folder copy($from, $to) move move a folder move($from, $to) mkdir creates a folder mkdir($path) delete delete a folder delete($path) view creates a cookie protected link for the user to look at. view($path) metadata creates a cookie protected link for the user to look at. metadata($path) putfile uploads a file to dropbox getfile get a file from dropbox debug Set this to a non-false value in order to print some debugging information to STDOUT. debug(1) INTERNAL API
_talk _talk handles the access to the restricted resources. You should normally not need to access this directly. nonce Generate a different nonce for every request. AUTHOR
Lenz Gschwendtner, "<norbu09 at cpan.org>" With Bug fixes from: Greg Knauss "gknauss at eod.com" Chris Prather "chris at prather.org" Shinichiro Aska [ktdreyer] SureVoIP <http://www.surevoip.co.uk> BUGS
Please report any bugs through the web interface at https://github.com/norbu09/Net--Dropbox/issues <https://github.com/norbu09/Net--Dropbox/issues>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. SUPPORT
You can find documentation for this module with the perldoc command. perldoc Net::Dropbox::API You can also look for information at: o AnnoCPAN: Annotated CPAN documentation http://annocpan.org/dist/Net-Dropbox-API <http://annocpan.org/dist/Net-Dropbox-API> o CPAN Ratings http://cpanratings.perl.org/d/Net-Dropbox-API <http://cpanratings.perl.org/d/Net-Dropbox-API> o Search CPAN http://search.cpan.org/dist/Net-Dropbox-API/ <http://search.cpan.org/dist/Net-Dropbox-API/> COPYRIGHT &; LICENSE Copyright 2010 Lenz Gschwendtner. This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License. See http://dev.perl.org/licenses/ for more information. perl v5.14.2 2012-03-22 Net::Dropbox::API(3pm)
All times are GMT -4. The time now is 08:23 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy